Actualmente estoy intentando configurar Postfix con Dovecot, pero algo no parece funcionar como debería.
Por alguna razón, los correos que envié a mi cuenta de correo aparecen en los registros, pero no se reubican en el buzón respectivo. Los registros no muestran ningún error, por lo que prácticamente no tengo idea de dónde podría estar el problema. Además, no he configurado ninguno de los servidores en ningún momento, por lo que realmente no puedo decir qué me podría estar perdiendo aquí.
Espero que puedan darme una pista.
Editar: también estoy usando uninterfaz web frontallo que me permite iniciar sesión, pero tampoco se pueden mostrar correos electrónicos en su interfaz.
árbol -aps
root /var/customers/mail/webmail/mail.domain.net/server/Maildir # tree -aps
.
|-- [drwx------ 4096] .Drafts
| |-- [drwx------ 4096] cur
| |-- [-rw------- 51] dovecot-uidlist
| |-- [-rw------- 248] dovecot.index.log
| |-- [-rw------- 0] maildirfolder
| |-- [drwx------ 4096] new
| `-- [drwx------ 4096] tmp
|-- [drwx------ 4096] .Sent
| |-- [drwx------ 4096] cur
| |-- [-rw------- 51] dovecot-uidlist
| |-- [-rw------- 248] dovecot.index.log
| |-- [-rw------- 0] maildirfolder
| |-- [drwx------ 4096] new
| `-- [drwx------ 4096] tmp
|-- [drwx------ 4096] .Spam
| |-- [drwx------ 4096] cur
| |-- [-rw------- 51] dovecot-uidlist
| |-- [-rw------- 248] dovecot.index.log
| |-- [-rw------- 0] maildirfolder
| |-- [drwx------ 4096] new
| `-- [drwx------ 4096] tmp
|-- [drwx------ 4096] .Trash
| |-- [drwx------ 4096] cur
| |-- [-rw------- 51] dovecot-uidlist
| |-- [-rw------- 156] dovecot.index.log
| |-- [-rw------- 0] maildirfolder
| |-- [drwx------ 4096] new
| `-- [drwx------ 4096] tmp
|-- [drwx------ 4096] cur
|-- [-rw------- 51] dovecot-uidlist
|-- [-rw------- 8] dovecot-uidvalidity
|-- [-r--r--r-- 0] dovecot-uidvalidity.55020f8f
|-- [-rw------- 432] dovecot.index.log
|-- [-rw------- 96] dovecot.mailbox.log
|-- [drwx------ 4096] new
|-- [-rw------- 23] subscriptions
`-- [drwx------ 4096] tmp
19 directories, 18 files
registro electrónico
Mar 13 00:53:41 v220110897556081 postfix/pickup[12736]: 06AE0736F6C5: uid=0 from=<root>
Mar 13 00:53:41 v220110897556081 postfix/cleanup[15499]: 06AE0736F6C5: message-id=<[email protected]>
Mar 13 00:53:41 v220110897556081 postfix/qmgr[12737]: 06AE0736F6C5: from=<[email protected]>, size=443, nrcpt=1 (queue active)
Mar 13 00:53:41 v220110897556081 postfix/trivial-rewrite[15500]: warning: do not list domain mail.domain.net in BOTH mydestination and virtual_mailbox_domains
Mar 13 00:53:41 v220110897556081 postfix/local[15503]: warning: database /etc/aliases.db is older than source file /etc/aliases
Mar 13 00:53:41 v220110897556081 postfix/local[15503]: 06AE0736F6C5: to=<[email protected]>, relay=local, delay=0.03, delays=0.02/0.01/0/0, dsn=2.0.0, status=sent (delivered to mailbox)
Mar 13 00:53:41 v220110897556081 postfix/qmgr[12737]: 06AE0736F6C5: removed
posconf -Mf
smtp inet n - - - - smtpd
pickup fifo n - - 60 1 pickup
cleanup unix n - - - 0 cleanup
qmgr fifo n - n 300 1 qmgr
tlsmgr unix - - - 1000? 1 tlsmgr
rewrite unix - - - - - trivial-rewrite
bounce unix - - - - 0 bounce
defer unix - - - - 0 bounce
trace unix - - - - 0 bounce
verify unix - - - - 1 verify
flush unix n - - 1000? 0 flush
proxymap unix - - n - - proxymap
proxywrite unix - - n - 1 proxymap
smtp unix - - - - - smtp
relay unix - - - - - smtp
showq unix n - - - - showq
error unix - - - - - error
retry unix - - - - - error
discard unix - - - - - discard
local unix - n n - - local
virtual unix - n n - - virtual
lmtp unix - - - - - lmtp
anvil unix - - - - 1 anvil
scache unix - - - - 1 scache
maildrop unix - n n - - pipe
flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
uucp unix - n n - - pipe
flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail
($recipient)
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=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender
$recipient
scalemail-backend unix - n n - 2 pipe
flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store
${nexthop} ${user} ${extension}
mailman unix - n n - - pipe
flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
${nexthop} ${user}
dovecot unix - n n - - pipe
flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -d ${recipient}
Respuesta1
Aquí está la solución que funcionó para mí:
En Postfix'principal.cfubicado en /etc/postfix/main.cf necesitaba configurar
local_transport = virtual
y
virtual_transport = dovecot
Ahora los correos también se entregan.