postfix не видит ящиков созданных в cyrus-imap,
mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
и путь в cyrus.conf совпадают. В чем может быть проблема?
>postfix не видит ящиков созданных в cyrus-imap,
>mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
>и путь в cyrus.conf совпадают. В чем может быть проблема?как ящики создаете ?
>>postfix не видит ящиков созданных в cyrus-imap,
>>mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
>>и путь в cyrus.conf совпадают. В чем может быть проблема?
>
>как ящики создаете ?что в master.cf ?
-----------cyrus.conf----------------------
# standard standalone server implementationSTART {
# do not delete this entry!
recover cmd="ctl_cyrusdb -r"# this is only necessary if using idled for IMAP IDLE
idled cmd="idled"
}# UNIX sockets start with a slash and are put into /var/lib/imap/sockets
SERVICES {
# add or remove based on preferences
imap cmd="imapd" listen="imap" prefork=5
# imaps cmd="imapd -s" listen="imaps" prefork=1
pop3 cmd="pop3d" listen="pop3" prefork=3
# pop3s cmd="pop3d -s" listen="pop3s" prefork=1
# sieve cmd="timsieved" listen="sieve" prefork=0# these are only necessary if receiving/exporting usenet via NNTP
# nntp cmd="nntpd" listen="nntp" prefork=3
# nntps cmd="nntpd -s" listen="nntps" prefork=1# at least one LMTP is required for delivery
# lmtp cmd="lmtpd" listen="lmtp" prefork=0
lmtpunix cmd="lmtpd" listen="/var/lib/imap/socket/lmtp" prefork=1# this is only necessary if using notifications
# notify cmd="notifyd" listen="/var/lib/imap/socket/notify" proto="udp" prefork=1
}EVENTS {
# this is required
checkpoint cmd="ctl_cyrusdb -c" period=30# this is only necessary if using duplicate delivery suppression,
# Sieve or NNTP
delprune cmd="cyr_expire -E 3" at=0400# this is only necessary if caching TLS sessions
tlsprune cmd="tls_prune" at=0400
}---------------imapd.conf-----------------------------
configdirectory: /var/lib/imap
partition-default: /var/spool/imap
admins: cyrus@gamma-171.nebula.fi cyrus@intresresearch.com
sievedir: /var/lib/imap/sieve
sendmail: /usr/sbin/sendmail
#hashimapspool: true
#sasl_pwcheck_method: saslauthd
sasl_pwcheck_method: auxprop
sasl_mech_list: PLAIN LOGIN
sasldb_path: /etc/sasldb2
tls_cert_file: /etc/pki/cyrus-imapd/cyrus-imapd.pem
tls_key_file: /etc/pki/cyrus-imapd/cyrus-imapd.pem
tls_ca_file: /etc/pki/tls/certs/ca-bundle.crt
virtdomains: userid
defaultdomain: gamma-171.nebula.fi
loginrealms: gamma-171.nebula.fi intresresearch.com
servername: mx.intresresearch.com
unixhierarchysep: no--------------------------master.cf-----------------------------------
#
# Postfix master process configuration file. For details on the format
# of the file, see the master(5) manual page (command: "man 5 master").
#
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - n - - smtpd
#submission inet n - n - - smtpd
# -o smtpd_enforce_tls=yes
# -o smtpd_sasl_auth_enable=yes
# -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#smtps inet n - n - - smtpd
# -o smtpd_tls_wrappermode=yes
# -o smtpd_sasl_auth_enable=yes
# -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#628 inet n - n - - qmqpd
pickup fifo n - n 60 1 pickup
cleanup unix n - n - 0 cleanup
qmgr fifo n - n 300 1 qmgr
#qmgr fifo n - n 300 1 oqmgr
tlsmgr unix - - n 1000? 1 tlsmgr
rewrite unix - - n - - trivial-rewrite
bounce unix - - n - 0 bounce
defer unix - - n - 0 bounce
trace unix - - n - 0 bounce
verify unix - - n - 1 verify
flush unix n - n 1000? 0 flush
proxymap unix - - n - - proxymap
smtp unix - - n - - smtp
# When relaying mail as backup MX, disable fallback_relay to avoid MX loops
relay unix - - n - - smtp
-o fallback_relay=
# -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq unix n - n - - showq
error unix - - n - - error
discard unix - - n - - discard
local unix - n n - - local
virtual unix - n n - - virtual
lmtp unix - - n - - lmtp
anvil unix - - n - 1 anvil
scache unix - - n - 1 scache
#
# ====================================================================
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# Many of the following services use the Postfix pipe(8) delivery
# agent. See the pipe(8) man page for information about ${recipient}
# and other message envelope options.
# ====================================================================
#
# maildrop. See the Postfix MAILDROP_README file for details.
# Also specify in main.cf: maildrop_destination_recipient_limit=1
#
maildrop unix - n n - - pipe
flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
#
# The Cyrus deliver program has changed incompatibly, multiple times.
#
old-cyrus unix - n n - - pipe
flags=R user=cyrus argv=/usr/lib/cyrus-imapd/deliver -e -m ${extension} ${user}
# Cyrus 2.1.5 (Amos Gouaux)
# Also specify in main.cf: cyrus_destination_recipient_limit=1
cyrus unix - n n - - pipe
user=cyrus argv=/usr/lib/cyrus-imapd/deliver -e -r ${sender} -m ${extension} ${user}
#
# See the Postfix UUCP_README file for configuration details.
#
uucp unix - n n - - pipe
flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
#
# Other external delivery methods.
#
ifmail unix - n n - - pipe
flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp unix - n n - - pipe
flags=Fq. user=foo argv=/usr/local/sbin/bsmtp -f $sender $nexthop $recipient---------------------------------------------------------------------------------
создаю пользователя
saslpasswd2
потом в cyradm завожу на него почтовый ящик
cm user.xxx@domen
В логах postfix что?
примерно такое
-------------------------------------------------------------------------------
15:16:04 gamma-171 postfix/cleanup[24499]: F307B43F14E: message-id=<20080807121557.F307B43F14E@mx.intresresearch.com>
Aug 7 15:16:04 gamma-171 postfix/qmgr[24453]: F307B43F14E: from=<vlsu@mail.ru>, size=351, nrcpt=1 (queue active)
Aug 7 15:16:04 gamma-171 master[24511]: about to exec /usr/lib/cyrus-imapd/lmtpd
Aug 7 15:16:04 gamma-171 lmtpunix[24511]: executed
Aug 7 15:16:04 gamma-171 lmtpunix[24006]: accepted connection
Aug 7 15:16:04 gamma-171 lmtpunix[24006]: lmtp connection preauth'd as postman
Aug 7 15:16:04 gamma-171 lmtpunix[24006]: verify_user(user.root) failed: Mailbox does not exist
Aug 7 15:16:04 gamma-171 postfix/pipe[24509]: F307B43F14E: to=<root@intresresearch.com>, orig_to=<info@intresresearch.com>, relay=cyrus, delay=27, delays=26/0.01/0/0.19, dsn=5.6.0, status=bounced (data format error. Command output: root: Mailbox does not exist )
Aug 7 15:16:04 gamma-171 postfix/cleanup[24499]: E4E9343F195: message-id=<20080807121604.E4E9343F195@mx.intresresearch.com>
Aug 7 15:16:04 gamma-171 postfix/qmgr[24453]: E4E9343F195: from=<>, size=2235, nrcpt=1 (queue active)
Aug 7 15:16:04 gamma-171 postfix/bounce[24512]: F307B43F14E: sender non-delivery notification: E4E9343F195
Aug 7 15:16:04 gamma-171 postfix/qmgr[24453]: F307B43F14E: removed
>postfix не видит ящиков созданных в cyrus-imap,
>mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
>и путь в cyrus.conf совпадают. В чем может быть проблема?netstat -nltp покажите
----------------netstat -nltp------------------------
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:5666 0.0.0.0:* LISTEN 1557/nrpe
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 17637/mysqld
tcp 0 0 0.0.0.0:110 0.0.0.0:* LISTEN 23998/cyrus-master
tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN 23998/cyrus-master
tcp 0 0 213.157.92.171:80 0.0.0.0:* LISTEN 9193/httpd
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 1671/vsftpd
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 14160/master
tcp 0 0 :::110 :::* LISTEN 23998/cyrus-master
tcp 0 0 :::143 :::* LISTEN 23998/cyrus-master
tcp 0 0 :::22 :::* LISTEN 1654/sshd
/etc/postfix/main.cf
mailbox_transport = cyrus
пробовал и
mailbox_transport = lmtp:unix:/var/lib/imap/socket/lmtp
и
mailbox_transport = cyrus
Он на все так ругается или только на user.root?
>Он на все так ругается или только на user.root?на все.
>>Он на все так ругается или только на user.root?
>
>на все.---------------imapd.conf-----------------------------
admins: cyrus root
>>>Он на все так ругается или только на user.root?
>>
>>на все.
>
>---------------imapd.conf-----------------------------
>
>admins: cyrusдобавил рута в админы и создал ему ящик, при отправке на ящик info@intresresearch.com, cyrus этот ящик не видит зато спокойно видит ящик рутовый и даже кладет туда корреспонденцию вот лог этой сессии.
--------------------------------------------------------------------------------
Aug 13 13:12:37 gamma-171 postfix/smtpd[18218]: warning: 78.36.56.236: address not listed for hostname rti.karelia.ru
Aug 13 13:12:37 gamma-171 postfix/smtpd[18218]: connect from unknown[78.36.56.236]
Aug 13 13:13:09 gamma-171 postfix/smtpd[18218]: F141B43F304: client=unknown[78.36.56.236]
Aug 13 13:13:19 gamma-171 postfix/cleanup[18152]: F141B43F304: message-id=<20080813101309.F141B43F304@mx.intresresearch.com>
Aug 13 13:13:19 gamma-171 postfix/qmgr[17318]: F141B43F304: from=<vlsu@mail.ru>, size=353, nrcpt=1 (queue active)
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: accepted connection
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: lmtp connection preauth'd as postman
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: IOERROR: fstating sieve script /var/lib/imap/sieve/domain/i/intresresearch.com/r/root/defaultbc: No such file or directory
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: duplicate_check: <20080813101309.F141B43F304@mx.intresresearch.com> intresresearch.com!user.root 0
Aug 13 13:13:19 gamma-171 master[18251]: about to exec /usr/lib/cyrus-imapd/lmtpd
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: duplicate_check: <20080813101309.F141B43F304@mx.intresresearch.com> intresresearch.com!user.root 0
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: mystore: starting txn 2147483654
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: mystore: committing txn 2147483654
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: duplicate_mark: <20080813101309.F141B43F304@mx.intresresearch.com> intresresearch.com!user.root 1218622399 3086771964
Aug 13 13:13:19 gamma-171 lmtpunix[18251]: executed
Aug 13 13:13:19 gamma-171 lmtpunix[17803]: Delivered: <20080813101309.F141B43F304@mx.intresresearch.com> to mailbox: intresresearch.com!user.root
Aug 13 13:13:19 gamma-171 postfix/lmtp[18250]: F141B43F304: to=<root@intresresearch.com>, orig_to=<info@intresresearch.com>, relay=mx.intresresearch.com[/var/lib/imap/socket/lmtp], delay=26, delays=26/0.01/0.01/0.01, dsn=2.1.5, status=sent (250 2.1.5 Ok)
Aug 13 13:13:19 gamma-171 postfix/qmgr[17318]: F141B43F304: removed
Aug 13 13:13:22 gamma-171 postfix/smtpd[18218]: disconnect from unknown[78.36.56.236]
--------------------------------------------------------------------------------------
мне не все понятно поясните пожалуйста что происходит.
------------------maillog-----------------------------------------------------------
IOERROR: fstating sieve script /var/lib/imap/sieve/domain/i/intresresearch.com/r/root/defaultbc: No such file or directoryэтой директории действительно нет, есть только /var/lib/imap/sieve/
в чем может быть проблема?
>------------------maillog-----------------------------------------------------------
>IOERROR: fstating sieve script /var/lib/imap/sieve/domain/i/intresresearch.com/r/root/defaultbc: No such file or directory
>
> этой директории действительно нет, есть только /var/lib/imap/sieve/
>
>в чем может быть проблема?насколько я понимаю эти директории должны создаваться автоматически при создании почтовых ящиков.