www国产黄色_天堂一区二区三区_亚洲图片一区二区_欧美日本不卡

首頁 > 系統 > RedHat > 正文

RedHatLinux AS3中APACHE+SendMail+OpenWebMail整合

2020-06-13 12:48:05
字體:
來源:轉載
供稿:網友

注:

1. Openwebmail是一個webmail程序,不同與微軟的owa及imail的web方式,它不包含服務器端服務(本例中郵件服務器為sendmail);因此在運行Openwebmail的機器上需要安裝Apache和Sendmail.

2. Openwebmail多數程序是由Perl語句編寫的,所以必須安裝Perl及Perl相關包

3.下載所需軟件包:在RedHatLinux AS3中安裝openwebmail需要以下軟件包

>>1. perl-CGI-2.81-88.4.i386.rpm

http://www.openwebmail.com/openwebmail/download/redhat/rpm/packages/rhel3/perl-CGI-2.81-88.4.i386.rpm

>>2.

perl-Compress-Zlib-1.21-RH9.i386.rpm

http://www.openwebmail.com/openwebmail/download/redhat/rpm/packages/rhel3/perl-Compress-Zlib-1.21-RH9.i386.rpm

>>3.

perl-Text-Iconv-1.2-RH80.i386.rpm

http://www.openwebmail.com/openwebmail/download/redhat/rpm/packages/rhel3/perl-Text-Iconv-1.2-RH80.i386.rpm

>>4.

perl-suidperl-5.8.0-88.i386.rpm

http://www.openwebmail.com/openwebmail/download/redhat/rpm/packages/rhel3/perl-suidperl-5.8.0-88.i386.rpm

>>5.

openwebmail-2.41-20041126.i386.rpm

http://www.openwebmail.com/openwebmail/download/redhat/rpm/daily-build/openwebmail-2.41-20041126.i386.rpm

下面就開始安裝配置:

Step 1:安裝下載包

[root@AS3 software]#rpm –ivh

perl-CGI-2.81-88.4.i386.rpm

[root@AS3 software]#rpm –ivh

perl-Compress-Zlib-1.21-RH9.i386.rpm

[root@AS3 software]#rpm –ivh

perl-Text-Iconv-1.2-RH80.i386.rpm

[root@AS3 software]#rpm –ivh

perl-suidperl-5.8.0-88.i386.rpm

Step 2:初始化openwebmail

[root@AS3 software]#cd /var/www/cgi-bin/openwebmail

[root@AS3 openwebmail]# ls -l

total 1192

drwxr-xr-x 2 root mail 4096 Nov 27 14:44 auth

drwxr-xr-x 12 root mail 4096 Nov 27 21:17 etc

drwxr-xr-x 6 root mail 4096 Nov 27 14:44 misc

drwxr-xr-x 2 root mail 4096 Nov 27 14:44 modules

-rwsr-xr-x 1 root mail 260341 Nov 26 12:16 openwebmail-abook.pl

-rwsr-xr-x 1 root mail 23817 Nov 26 12:16 openwebmail-advsearch.pl

-rwsr-xr-x 1 root mail 114322 Nov 26 12:16 openwebmail-cal.pl

-rwsr-xr-x 1 root mail 23855 Nov 26 12:16 openwebmail-folder.pl

-rwsr-xr-x 1 root mail 68418 Nov 26 12:16 openwebmail-main.pl

-rwsr-xr-x 1 root mail 34984 Nov 26 12:16 openwebmail.pl

-rwsr-xr-x 1 root mail 139830 Nov 26 12:16 openwebmail-prefs.pl

-rwsr-xr-x 1 root mail 66851 Nov 26 12:16 openwebmail-read.pl

-rwsr-xr-x 1 root mail 110724 Nov 26 12:16 openwebmail-send.pl

-rwsr-xr-x 1 root mail 24813 Nov 26 12:16 openwebmail-spell.pl

-rwsr-xr-x 1 root mail 52749 Nov 26 12:16 openwebmail-tool.pl

-rwsr-xr-x 1 root mail 48796 Nov 26 12:16 openwebmail-vdomain.pl

-rwsr-xr-x 1 root mail 18457 Nov 26 12:16 openwebmail-viewatt.pl

-rwsr-xr-x 1 root mail 112975 Nov 26 12:16 openwebmail-webdisk.pl

-rwxr-xr-x 1 root mail 4859 Aug 12 13:06 preload.pl

drwxr-xr-x 2 root mail 4096 Nov 27 14:44 quota

drwxr-xr-x 2 root mail 4096 Nov 27 14:44 shares

-rwxr-xr-x 1 root mail 4117 Sep 4 15:04 userstat.pl

-rwxr-xr-x 1 root mail 19305 Nov 16 22:42 vacation.pl

[root@AS3 openwebmail]#./openwebmail-tool.pl --init //這步驟很關鍵會出現如下的提示:change the following 3 options in openwebmail.conf from dbm_ext .db dbmopen_ext none dbmopen_haslock no to dbm_ext .db dbmopen_ext %dbm_ext% dbmopen_haslock no安回車鍵忽略提示,繼續配置//進入openwebmail下面的etc目錄進行相關配置,需要修改以下

1./var/www/cgi-bin/openwebmail /etc/openwebmail.conf

2./var/www/cgi-bin/openwebmail/etc/defaults/openwebmail.conf

3./var/www/cgi-bin/openwebmail/etc/defaults/dbm.conf

修改后的文件為

>>1./var/www/cgi-bin/openwebmail/etc/openwebmail.conf[只需修改1處domainnames supermaster.com //默認是auto],完整的內容如下:

#

# Open WebMail configuration file

#

# This file contains just the overrides from defaults/openwebmail.conf

# please make all changes to this file.

#

# This file sets options for all domains and all users.

# To set options on per domain basis, please put them in sites.conf/domainname

# To set options on per user basis, please put them in users.conf/username

#

releasedate 20041126

domainnames supermaster.com //默認是auto

auth_module auth_unix.pl

mailspooldir /var/spool/mail

ow_cgidir /var/www/cgi-bin/openwebmail

ow_cgiurl /cgi-bin/openwebmail

ow_htmldir /var/www/data/openwebmail

ow_htmlurl /data/openwebmail

logfile /var/log/openwebmail.log

# To SysAdmin,

# Please install ClamAV RPM package fromhttp://clamav.net/in order to

# enable viruscheck with Open WebMail. Otherwise set it to no.

# Seehttp://openwebmail.org/openwebma... howto/virus/ClamAV/

# for a step-by-step instruction.

enable_viruscheck yes

viruscheck_pipe /usr/bin/clamdscan --mbox --disable-summary --stdout -

viruscheck_source_allowed all

enable_spamcheck no

enable_learnspam no

%name%

version %version%

%help_text%?

logo_url %ow_htmlurl%/images/openwebmail.gif

logo_linkhttp://openwebmail.org

help_url @@@HELP_URL@@@

help_text @@@HELP_TEXT@@@

spellcheck /usr/bin/aspell -a -S -w "-" -d @@@DICTIONARY@@@ -p @@@PDICNAME@@@

spellcheck_pdicname.aspell.@@@DICTIONARY@@@.pws

spellcheck_dictionaries english, american

auto_createrc yes

############################################

# Buttons :

# EditFroms | EditStationary | POP3Setup | ChangePassword | History | Info

enable_editfrombook yes

enable_stationery yes

enable_pop3 yes

enable_changepwd yes

enable_history yes

enable_about yes

##############################################

# Personal Information

default_language en

default_timeoffset auto

default_daylightsaving auto

default_realname auto

default_fromemails auto

default_autoreplysubject This is an autoreply...[Re: $SUBJECT]

Hello,

I will not be reading my mail for a while.

Your mail regarding '$SUBJECT' will be read when I return.

--

Open WebMail Project (http://openwebmail.org)

##############################################

# Display Preference

default_style Default

default_iconset Cool3D.English

default_bgurl %ow_htmlurl%/images/backgrounds/Globe.gif

default_bgrepeat yes

default_fontsize 10pt

default_dateformat mm/dd/yyyy

default_hourformat 12

############################################

# Folder Browsing

default_ctrlposition_folderview bottom

default_msgsperpage 20

default_fieldorder date from subject size

default_sort date

default_useminisearchicon yes

############################################

# Message Operation

default_confirmmsgmovecopy no

default_defaultdestination saved-messages

default_smartdestination yes

default_viewnextaftermsgmovecopy yes

default_autopop3 yes

default_autopop3wait 0

default_bgfilterwait 10

default_moveoldmsgfrominbox no

############################################

# Message Reading Options

default_ctrlposition_msgread bottom

default_headers simple

default_usefixedfont no

default_usesmileicon no

default_showhtmlastext yes

default_showimgaslink yes

default_disablejs yes

default_disableembcode yes

default_disableemblink cgionly

default_sendreceipt ask

############################################

# Message Replying Options

default_msgformat text

default_editcolumns 88

default_editrows 28

default_sendbuttonposition before

default_reparagraphorigmsg yes

default_replywithorigmsg at_beginning

default_backupsentmsg yes

default_sendcharset sameascomposing

############################################

# Virus Check

default_viruscheck_source all

default_viruscheck_maxsize 10000

default_viruscheck_minbodysize 1

############################################

# Message Filtering Options

default_filter_repeatlimit 10

default_filter_badaddrformat no

default_filter_fakedsmtp no

default_filter_fakedfrom no

default_filter_fakedexecontenttype no

############################################

# AddressBook Options

default_abook_width 600

default_abook_height max

default_abook_buttonposition after

default_abook_defaultfilter no

default_abook_defaultsearchtype name

default_abook_addrperpage 24

default_abook_collapse 1

default_abook_sort fullname

default_abook_listviewfieldorder fullname, email, note

############################################

# Calendar Options

default_calendar_defaultview calmonth

default_calendar_holidaydef auto

default_calendar_monthviewnumitems 5

default_calendar_weekstart 0

default_calendar_starthour 0600

default_calendar_endhour 2300

default_calendar_interval 30

default_calendar_showemptyhours yes

default_calendar_reminderdays 7

default_calendar_reminderforglobal yes

############################################

# WebDisk Options

default_webdisk_dirnumitems 10

default_webdisk_confirmmovecopy yes

default_webdisk_confirmdel yes

default_webdisk_confirmcompress yes

default_webdisk_fileeditcolumns 96

default_webdisk_fileeditrows 24

############################################

# Misc Options

default_uselightbar yes

default_regexmatch yes

default_hideinternal yes

default_newmailsound NONE

default_newmailwindowtime 3

default_mailsentwindowtime 0

default_dictionary english

default_trashreserveddays 0

default_spamvirusreserveddays 3

default_refreshinterval 5

default_sessiontimeout 24

############################################

# Security Settings

webdisk_rootpath /webdisk

webdisk_lsmailfolder no

webdisk_lshidden no

webdisk_lsunixspec no

webdisk_lssymlink yes

webdisk_allow_symlinkout yes

webdisk_symlinkout_display @

enable_sshterm no

# ps: To completely disable the SSH terminal support, you have to remove

# the file data/openwebmail/applet/mindterm/mindtermfull.jar

############################################

# Quota System (limit in KB and threshold in %)

# 1 MB = 1,024 KB

# 10 MB = 10,240 KB

# 100 MB = 102,400 KB

# 1 GB = 1,024 MB = 1,048,576 KB

# uncomment following lines if you wish to enable Quota System for 10 Mb

#quota_module quota_du.pl

#spool_limit 10240

#quota_limit 10240

#quota_threshold 0

#delmail_ifquotahit no

#delfile_ifquotahit no

>>2./var/www/cgi-bin/openwebmail/etc/defaults/openwebmail.conf [只需修改2處,把smtpserver和authpop3_server改為相應的IP],完整的內容如下:

#

# Open WebMail configuration file DEFAULT

#

# This is openwebmail.conf.default - a file full of useful variables that

# you can set for the openwebmail system. You should not edit this file!

# Put any overrides into openwebmail.conf instead. The openwebmail.conf

# should only contain values which override values set in this file.

# This eases the upgrade when defaults are changed or new features are added.

#

# Please refer to openwebmail.conf.help for description of each option

#

# ps: This file will be loaded only once if Open WebMail is running in

# persistent mode. To force Open WebMail reread this file, please do

#

# touch openwebmail*pl

#

name Open WebMail

version 2.41

releasedate 20041126

##############################################################################

# host dependent configuration

##############################################################################

domainnames auto

smtpserver 192.168.0.111

smtpport 25

smtpauth no

virtusertable /etc/mail/virtusertable

auth_module auth_unix.pl

auth_withdomain no

auth_domain auto

quota_module none

mailspooldir /var/mail

use_hashedmailspools no

use_syshomedir yes

create_syshomedir no

use_homedirspools no

homedirspoolname Mailbox

homedirfolderdirname mail

homedirdotdirname .openwebmail

use_syshomedir_for_dotdir yes

deliver_use_GMT no

##############################################################################

# openwebmail system configuration

##############################################################################

ow_cgidir /usr/local/www/cgi-bin/openwebmail

ow_cgiurl /cgi-bin/openwebmail

ow_htmldir /usr/local/www/data/openwebmail

ow_htmlurl /openwebmail

ow_etcdir %ow_cgidir%/etc

ow_stylesdir %ow_etcdir%/styles

ow_langdir %ow_etcdir%/lang

ow_templatesdir %ow_etcdir%/templates

ow_holidaysdir %ow_etcdir%/holidays

ow_mapsdir %ow_etcdir%/maps

ow_sitesconfdir %ow_etcdir%/sites.conf

ow_usersconfdir %ow_etcdir%/users.conf

ow_usersdir %ow_etcdir%/users

ow_sessionsdir %ow_etcdir%/sessions

start_url %ow_cgiurl%/openwebmail.pl

ico_url %ow_htmlurl%/images/openwebmail.ico

logo_url %ow_htmlurl%/images/openwebmail.gif

logo_linkhttp://openwebmail.org/

help_url @@@HELP_URL@@@

help_text @@@HELP_TEXT@@@

logfile /var/log/openwebmail.log

global_addressbook %ow_etcdir%/address.book

global_filterbook %ow_etcdir%/filter.book

global_calendarbook %ow_etcdir%/calendar.book

g2b_map %ow_mapsdir%/g2b.map

b2g_map %ow_mapsdir%/b2g.map

lunar_map %ow_mapsdir%/lunar.map

header_pluginfile none

header_pluginfile_charset none

footer_pluginfile none

footer_pluginfile_charset none

webmail_middle_pluginfile none

webmail_middle_pluginfile_charset none

spellcheck /usr/local/bin/ispell -a -S -w "-" -d @@@DICTIONARY@@@ -p @@@PDICNAME@@@

spellcheck_pdicname .ispell_words

spellcheck_dictionaries english, american

vacationinit %ow_cgidir%/vacation.pl -i

vacationpipe %ow_cgidir%/vacation.pl -t60s

error_with_debuginfo no

allowed_serverdomain all

allowed_clientdomain all

allowed_clientip all

allowed_receiverdomain all

allowed_autologinip all

allowed_rootloginip none

case_insensitive_login no

forced_ssl_login no

stay_ssl_afterlogin yes

enable_domainselectmenu no

domainselmenu_list auto

enable_strictvirtuser no

enable_changepwd yes

enable_strictpwd yes

passwd_minlen 6

session_multilogin yes

session_checkcookie yes

session_checksameip no

session_count_display yes

cache_userinfo yes

auto_createrc no

domainnames_override no

symboliclink_mbox yes

enable_webmail yes

enable_userfolders yes

enable_spellcheck yes

enable_advsearch yes

enable_addressbook yes

enable_calendar yes

enable_webdisk yes

enable_sshterm yes

enable_vdomain no

enable_preference yes

enable_history yes

enable_about yes

about_info_software yes

about_info_scriptfilename no

about_info_protocol yes

about_info_server yes

about_info_client yes

X-Mailer: %name% %version% %releasedate%

X-OriginatingIP: @@@CLIENTIP@@@ (@@@USERID@@@)

enable_loadfrombook yes

enable_editfrombook yes

frombook_for_realname_only no

enable_autoreply yes

enable_setforward yes

enable_strictforward no

enable_stationery yes

enable_savedraft yes

enable_backupsent yes

enable_globalfilter yes

enable_userfilter yes

enable_smartfilter yes

smartfilter_bypass_goodmessage yes

log_filter_detail no

enable_viruscheck no

viruscheck_pipe /usr/local/bin/clamdscan --disable-summary --stdout -

viruscheck_source_allowed pop3

viruscheck_maxsize_allowed 50000

virus_destination virus-mail

has_virusfolder_by_default yes

enable_spamcheck no

spamcheck_pipe /usr/local/bin/spamc -c -x -t60 -u @@@USERNAME@@@

spamcheck_source_allowed pop3

spamcheck_maxsize_allowed 1000

spam_destination spam-mail

has_spamfolder_by_default yes

enable_learnspam no

learnspam_pipe /usr/local/bin/sa-learn --spam

learnham_pipe /usr/local/bin/sa-learn --ham

learnspam_destination spam-mail

learnham_destination INBOX

enable_pop3 yes

pop3_disallowed_servers your_server, your_server.domain

pop3_delmail_by_default yes

pop3_delmail_hidden no

pop3_usessl_by_default no

authpop3_server 192.168.0.111

authpop3_port 110

authpop3_getmail no

authpop3_delmail yes

authpop3_usessl no

loginerrordelay 10

fetchpop3interval 15

calendar_email_notifyinterval 120

enable_strictfoldername no

foldername_maxlen 32

maxbooksize 32

attlimit 50000

abook_maxsizeallbooks 100

abook_globaleditable yes

abook_importlimit 250

abook_attlimit 25

webdisk_rootpath /

webdisk_readonly no

webdisk_uploadlimit 50000

webdisk_lsmailfolder yes

webdisk_lshidden yes

webdisk_lsunixspec yes

webdisk_lssymlink yes

webdisk_allow_symlinkcreate yes

webdisk_allow_symlinkout yes

webdisk_symlinkout_display path

webdisk_allow_thumbnail yes

webdisk_allow_untar yes

webdisk_allow_unzip yes

webdisk_allow_unrar yes

webdisk_allow_unarj yes

webdisk_allow_unlzh yes

spool_limit 0

quota_limit 0

quota_threshold 75

delmail_ifquotahit no

delfile_ifquotahit no

vdomain_admlist sysadm

vdomain_maxuser 100

vdomain_maxalias 100

vdomain_vmpop3_pwdpath /etc/virtual

vdomain_vmpop3_pwdname passwd

vdomain_vmpop3_mailpath /var/spool/virtual

vdomain_postfix_aliases /etc/postfix/aliases

vdomain_postfix_virtual /etc/postfix/virtual

vdomain_postfix_postalias /usr/sbin/postalias

vdomain_postfix_postmap /usr/sbin/postmap

vdomain_mailbox_command none

localusers none

%name%

version %version%

%help_text%?

##############################################################################

# default setting for new user's preference

##############################################################################

default_language auto

default_charset auto

default_timeoffset auto

default_daylightsaving auto

default_realname auto

default_fromemails auto

default_autoreplysubject This is an autoreply...[Re: $SUBJECT]

Hello,

I will not be reading my mail for a while.

Your mail regarding '$SUBJECT' will be read when I return.

--

Open WebMail Project (http://openwebmail.org)

default_style Default

default_iconset Default

default_bgurl %ow_htmlurl%/images/backgrounds/Globe.gif

default_bgrepeat yes

default_fontsize 10pt

default_dateformat mm/dd/yyyy

default_hourformat 12

default_ctrlposition_folderview top

default_msgsperpage 10

default_fieldorder date from subject size

default_sort date

default_useminisearchicon yes

default_confirmmsgmovecopy yes

default_defaultdestination saved-messages

default_smartdestination yes

default_viewnextaftermsgmovecopy yes

default_autopop3 yes

default_autopop3wait 0

default_bgfilterwait 10

default_moveoldmsgfrominbox no

forced_moveoldmsgfrominbox no

default_ctrlposition_msgread top

default_headers simple

default_showhtmlastext no

default_showimgaslink no

default_usefixedfont no

default_usesmileicon yes

default_disablejs yes

default_disableembcode yes

default_disableemblink cgionly

default_sendreceipt ask

default_msgformat auto

default_editcolumns 78

default_editrows 24

default_sendbuttonposition before

default_reparagraphorigmsg yes

default_replywithorigmsg at_beginning

default_backupsentmsg yes

default_sendcharset sameascomposing

default_fscharset none

default_uselightbar yes

default_regexmatch yes

default_hideinternal yes

default_refreshinterval 20

min_refreshinterval 3

default_newmailsound YouGotMail.English.wav

default_newmailwindowtime 7

default_mailsentwindowtime 5

default_dictionary english

default_trashreserveddays 7

default_spamvirusreserveddays 3

default_sessiontimeout 60

default_viruscheck_source pop3

default_viruscheck_maxsize 10000

default_viruscheck_minbodysize 1

default_spamcheck_source pop3

default_spamcheck_maxsize 250

default_spamcheck_threshold 10

default_filter_repeatlimit 10

default_filter_badaddrformat no

default_filter_fakedsmtp no

default_filter_fakedfrom no

default_filter_fakedexecontenttype no

default_abook_width 600

default_abook_height 400

default_abook_buttonposition after

default_abook_defaultfilter no

default_abook_defaultsearchtype none

default_abook_defaultkeyword none

default_abook_addrperpage 10

default_abook_collapse 1

default_abook_sort fullname

default_abook_listviewfieldorder fullname,email,phone,note

default_calendar_defaultview calmonth

default_calendar_holidaydef auto

default_calendar_monthviewnumitems 5

default_calendar_weekstart 0

default_calendar_starthour 0800

default_calendar_endhour 1700

default_calendar_interval 30

default_calendar_showemptyhours yes

default_calendar_reminderdays 7

default_calendar_reminderforglobal yes

default_webdisk_dirnumitems 10

default_webdisk_confirmmovecopy yes

default_webdisk_confirmdel yes

default_webdisk_confirmcompress yes

default_webdisk_fileeditcolumns 96

default_webdisk_fileeditrows 24

>>3./var/www/cgi-bin/openwebmail/etc/defaults/dbm.conf[只需修改3處],完整的內容如下:

#

# config file for dbm.pl

#

# dbm_ext

# -----------------------------------------------------------------------

# This is the extension name for the dbm file on your system

#

# ps: You can run 'perl openwebmail/misc/test/dbmtest.pl' to get value for this

# dbmopen_ext

# -----------------------------------------------------------------------

# This is the db extension passed to the dbmopen() call.

# It should be set to 'none' in most case. You need to set it to %dbm_ext%

# only if you use any DB File module in script explicitly

#

# ps: It is said this option needs to be set to '%dbm_ext%' on the Sun

# Cobal server or Slackware 8.x.

# You can run 'perl openwebmail/misc/test/dbmtest.pl' to get value for this

# dbmopen_haslock

# -----------------------------------------------------------------------

# If your perl dbm system will do filelock in dbmopen() by itself,

# set this option to 'yes' so openwebmail won't do unnecessary filelock

# before dbmopen. On most systems, this option should be set to 'no'.

#

# ps: If your openwebmail hangs after login or saving preference,

# you probablely need to set this option to 'y, es'

dbm_ext .db

dbmopen_ext .db

dbmopen_haslock yes

smtpserver 192.168.0.111 //添加SMTP服務器的IP地址

ok,上面的文件修改完后,再運行./openwebmail-tool.pl –init執行初始化腳本

[root@AS3 openwebmail]#./openwebmail-tool.pl --init

有關openwebmail的配置就完成了

Step 3.修改APACHE的配置文件(httpd.conf)

[root@AS3 openwebmail]#vi /etc/httpd/conf/httpd.conf

//添加如下語句

#===the start===

ScriptAlias /openwebmail "/var/www/cgi-bin/openwebmail/openwebmail.pl"

AllowOverride None

Options ExecCGI -Indexes

Order allow,deny

Allow from all

Alias /data "/var/www/data"

#===the end====

[root@AS3 openwebmail]#service httpd restart //重啟apache

現在所以的工作都完成了,新建用戶去測試吧

Step 4.進行OWM測試


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
www国产黄色_天堂一区二区三区_亚洲图片一区二区_欧美日本不卡
亚洲乱码一区二区三区| 国内伊人久久久久久网站视频| xxxx黄色片| 在线观看日韩av先锋影音电影院| 精品无码av一区二区三区不卡| 欧美日韩国产综合视频在线观看中文| 亚洲成人av免费看| 亚洲一区二区四区蜜桃| 国产一区二区在线观看免费视频| 天涯成人国产亚洲精品一区av| 中文字幕在线视频一区二区| 欧美视频13p| 一本色道综合久久欧美日韩精品| 欧美色图一区二区三区| 亚洲а∨天堂久久精品2021| 亚洲国产日韩欧美在线99| 日本午夜免费一区二区| 亚洲最新中文字幕| 青青一区二区| 日本一区二区不卡| 亚洲理论在线| 久久亚洲综合网| 99精品国产热久久91蜜凸| 成人黄色大片网站| 亚洲最新视频在线观看| 在线免费播放av| 亚洲国产精品免费| 果冻天美麻豆一区二区国产| 91精品国产乱码久久久久久蜜臀 | 欧美专区一二三| av中文字幕在线不卡| 青青草原av在线播放| 亚洲成人免费电影| 国产熟妇搡bbbb搡bbbb| 亚洲精品国产欧美| 国产成人av| 成人免费高清完整版在线观看| 日本伊人色综合网| 欧美国产视频一区| 欧美日韩国产在线看| 日韩黄色中文字幕| 久精品免费视频| 国产亚洲福利| 香蕉视频免费版| 午夜私人影院久久久久| 日本女人性生活视频| 精品国偷自产在线视频99| 午夜精品999| 欧美一区二区三区四区夜夜大片 | 精品国产91久久久久久| 美国黑人一级大黄| 精品中文字幕在线2019| 久久国产精品99国产| 久久香蕉视频网站| 91官网在线免费观看| 人人九九精品视频| 国产色综合天天综合网| 成人永久免费视频| www.五月天色| 亚洲精品在线视频| 激情欧美一区二区三区| 不卡中文字幕在线| 色婷婷av一区| 亚洲人挤奶视频| 国产亚洲精品久久飘花| 国产精品天美传媒沈樵| 极品人妻videosss人妻| 91高清视频在线免费观看| 国产一区二区三区黄视频| 韩国视频一区二区三区| 国产丝袜视频一区| 亚洲激精日韩激精欧美精品| 国产青草视频在线观看| 欧美一区欧美二区| 波多野结衣一区| 中文字幕免费高| 欧美日韩亚州综合| 全球成人免费直播| 99亚洲精品视频| 欧美日韩国产区一| 日韩av大片| 伊人网在线免费| 日韩亚洲欧美综合| 欧美成人有码| 浮妇高潮喷白浆视频| 欧美精品一区二区三区很污很色的 | 一区二区免费| 久久久久高清| 91黄色激情网站| 日本在线电影一区二区三区| 粉嫩av一区二区三区天美传媒| 欧美日韩三级一区| 中文不卡在线| 日韩中文字幕二区| 一区二区三区回区在观看免费视频| 久久中文字幕一区二区三区| 奇米视频7777| 欧美精品久久一区二区| 99久久久精品免费观看国产蜜| 91激情视频在线观看| 国产精品一区久久| 亚洲一区二区av在线| 欧美freesex8一10精品| 咪咪色在线视频| 亚洲国产精品va在线看黑人 | 国产中文字幕一区| 一区二区三区四区免费| 国产欧美中文字幕| 亚洲高清一区二区三区| 欧美熟乱15p| 欧美精品一区免费| 乱亲女秽乱长久久久| 粉嫩aⅴ一区二区三区四区| 亚洲区免费视频| 成人动漫在线视频| 欧美性色黄大片| 99视频一区| 欧美极品jizzhd欧美仙踪林| 国产日韩精品电影| 欧美午夜久久久| 黄色在线一区| 99热超碰在线| 亚洲影视中文字幕| 欧美性受xxxx| 久久看片网站| 三区四区在线观看| 久久久免费看| 亚洲精品aⅴ中文字幕乱码| 久久成人免费网站| www.99re6| 一本久久a久久精品vr综合| 亚洲免费av网址| 不卡的av电影| 91综合久久爱com| 久久99久久99精品| 欧美激情va永久在线播放| 亚洲欧洲在线观看av| 视频在线不卡免费观看| 天天色天天干天天色| 91在线观看免费网站| 欧美一区永久视频免费观看| 国产一区二区三区不卡在线观看 | 91久久国产综合久久91精品网站| 在线视频国内自拍亚洲视频| 久久亚洲国产精品一区二区| 亚洲国产精品一区二区久久hs| 亚洲国产精品www| 伊人伊成久久人综合网小说| 欧美激情在线观看视频免费| 欧美电影一二区| 欧美在线一级片| 欧美成人第一区| 中文欧美在线视频| 自拍视频在线观看一区二区| 欧美日韩国产免费观看 | 日韩激情在线观看| 顶臀精品视频www| 国产一区二区三区小说| 久久久久久久香蕉网| 亚洲福中文字幕伊人影院| 国产美女一区| 亚洲tv在线| 国产亚洲天堂网| 亚洲一区二区三区xxx视频| 精品久久久久久久久久久久久久久久久| 国产高清亚洲一区| 免费黄色成人| 久久国产精品无码一级毛片| 亚洲欧洲精品在线| 91国产中文字幕| 91麻豆精品国产91久久久久久久久 | 国产ts人妖一区二区三区| 欧美性大战久久久久久久蜜臀| 国产麻豆视频一区二区| 伊人久久大香线蕉| 91av在线免费| 精品视频在线观看一区二区| 国产精品久久久av| 亚洲黄色免费三级| 亚洲女同一区二区| 免费成人性网站| 国产精品嫩模av在线| 特级西西人体4444xxxx| 久久久天堂国产精品| 国产精品入口尤物| 亚洲精品自在久久| 欧美色播在线播放| 成人av综合一区| 狠狠爱综合网| 试看120秒一区二区三区| 国产探花在线观看视频| 一区二区av| 国产欧美日韩免费看aⅴ视频| 亚洲精品久久久久中文字幕欢迎你 | 亚洲欧美文学| 91精品尤物| 中文乱码人妻一区二区三区视频| 欧美大黑帍在线播放| 亚洲永久在线观看| 久久久久久久国产精品视频| 91精品国产一区二区| 亚洲视频一区二区在线| 国产精品 欧美精品| 午夜精品视频| 国产精品17p| 正在播放国产对白害羞| 中日韩av在线播放| 日韩精品手机在线观看| 国产精品国产精品国产专区不卡| 九九九久久久久久| 日韩av一区二区在线观看| 欧美日韩一区二区免费视频| 国产偷国产偷亚洲高清人白洁| 丝袜美腿亚洲色图| 国产韩国精品一区二区三区| 欧美午夜在线播放| 国产成人av一区二区三区不卡| 国产真实乱子伦| 综合久久国产| 久久99精品久久久久久久青青日本| 欧美一区深夜视频| 中文字幕欧美精品在线| 7777精品伊人久久久大香线蕉的| 一区二区免费在线| 久久久国产精品麻豆 | 91在线观看高清| 久久99久久99| 天堂午夜影视日韩欧美一区二区| 国产高清欧美| 国产尤物久久久| 欧美黄视频在线观看| 国产亚洲精品精品精品| xxxwww国产| 国产亚洲视频一区| 99热成人精品热久久66| 亚洲一区二区三区加勒比| 国产麻豆一区二区三区在线观看| 国产欧美va欧美va香蕉在线| 98精品国产高清在线xxxx天堂| 久久视频这里只有精品| 亚洲天堂视频在线观看| 亚洲成人免费网站| 欧美一级生活片| 精品视频一区 二区 三区| 精品久久久久久久久久久久| 亚洲五月六月丁香激情| 亚洲私人影院在线观看| 国产精品三级电影| 久久久久久日产精品| 91在线看国产| 91网上在线视频| wwww国产精品欧美| 99精品视频一区| 久久久不卡影院| 久久久久久亚洲综合| 91啪亚洲精品| 国产婷婷一区二区| 国产欧美精品区一区二区三区| 久久久噜噜噜久噜久久综合| 国产亚洲综合在线| 国产精品久久久久一区二区三区共| 国产校园另类小说区| 亚洲国产精品传媒在线观看| 国产欧美日韩中文久久| 国产精品久久久久久久久免费相片| 日本一区二区三区在线观看| 国产精品每日更新在线播放网址| 国产精品色在线| 亚洲精品欧美激情| 亚洲一区二区三区四区在线免费观看 | 激情欧美日韩| 久久婷婷丁香| 久久精品72免费观看| 黄页视频在线91| 不卡的av在线| 国产精品美女久久久久久久网站| 亚洲视频免费在线观看| 亚洲国产精品久久久久秋霞影院| 欧美性xxxxx极品| 欧美精品粉嫩高潮一区二区| 精品国产乱码久久久久久影片| 亚洲精品久久久久中文字幕欢迎你 | 亚洲性线免费观看视频成熟| 色偷偷av亚洲男人的天堂| 欧美福利视频网站| 欧美在线视频网| 亚洲精品日韩av| 欧美精品二区三区四区免费看视频 | 国产精品久线在线观看| 亚洲成人7777| 欧美精品欧美精品系列| 亚洲美女av网站| 久久综合色88| 国产精品久久一区| 国严精品久久久久久亚洲影视| 亚洲欧美综合一区| 麻豆av免费在线| 熟妇人妻久久中文字幕| 国产亚洲精品久久久久久豆腐| 96sao在线精品免费视频| 99精品美女| 日本在线不卡视频一二三区| 99riav久久精品riav| 一区二区三区四区乱视频| 欧美日韩久久一区| 国产一区二区欧美日韩| 欧洲亚洲免费视频| 国内一区二区三区在线视频| 人妻互换免费中文字幕| 日本一二三四区视频| 久久久99999| 在线观看欧美理论a影院| 一本色道久久综合亚洲精品不卡| 国产电影精品久久禁18| 亚洲另类春色国产| 日韩一区二区三区四区| 免费av在线一区| 99久久精品免费看国产四区| 免费看黄色a级片| 年下总裁被打光屁股sp| 国产精品一区免费在线| 亚洲免费二区| 成人性视频网站| 欧美三级免费观看| 国产一区二区三区在线观看网站| 欧美中文字幕视频在线观看| 久久本道综合色狠狠五月| 日本三级免费网站| 中文字幕免费在线看线人动作大片| 日韩精品丝袜美腿| 久久五月激情| 最好看的中文字幕久久| 日韩精品专区在线影院重磅| 欧美国产日韩精品| 蜜桃久久精品乱码一区二区| 一本久道综合色婷婷五月| 欧美88888| 亚洲国产成人精品女人| jizz一区二区| 欧美日本在线视频| 欧美激情视频在线| 欧美黑人3p| 绯色av蜜臀vs少妇| 精品按摩偷拍| 久久成人综合网| 狠狠色狠狠色综合日日五| 日韩中文在线观看| 成人一区二区在线| 一级片视频免费观看| 国产一区2区在线观看| 老司机免费视频久久| 亚洲一区二区三区激情| 亚洲视频精品在线| 国产在线欧美日韩| 免费国偷自产拍精品视频| 亚洲专区视频| 成人晚上爱看视频| 欧美高清www午色夜在线视频| 欧美亚洲伦理www| 国产一区二区三区播放| 黑人と日本人の交わりビデオ| 一区二区三区四区日韩| 国产欧美va欧美不卡在线| 精品亚洲一区二区三区在线播放| 成人有码视频在线播放| 欧美日韩在线成人| 成人自拍在线| 丁香亚洲综合激情啪啪综合| 欧美一区二区三区影视| 91精品免费看| 日韩欧美国产片| 国产真实有声精品录音| 久久综合狠狠综合| 亚洲欧美另类中文字幕| 久久超碰亚洲| 精品国产无码在线观看| 中文久久精品| 欧洲一区在线观看| 国产mv免费观看入口亚洲| 日本888xxxx| 国产成人一区| 国产精品初高中害羞小美女文| 在线国产精品播放| 一区高清视频| 96视频在线观看欧美| 国产真实乱偷精品视频免| 日韩一区二区三| 国产一区免费| www亚洲色图| 美女久久久精品| 日韩写真欧美这视频| 久久精品国产精品国产精品污 | 91精品久久久久久久久99蜜臂| 国产在线视频欧美| 色诱av手机版| 亚洲茄子视频| 欧美日韩大陆在线| 国产精品免费在线播放| 少妇精品一区二区三区| 久久亚洲色图|