Hello, 

I configured postfix with mysql virtual mailboxes following the instructions
on http://www.esdebian.org/wiki/servidor-correo (instructions are in
spanish, but I have attached the contents of the main.cf file for
reference). Everything worked fine, but I'm not able to forward e-mail to
external e-mail addresses. 

According to the document, I should put an entry on the forwadings table of
my mysql configuration, which has two fields: source and destination. Mail
sent to source should then be sent to destination.

This configuration does for local delivery: if I put an inexistent e-mail
address on source and a valid local e-mail address in destination, mail gets
send. It also works if I put a valid local e-mail address on source and a
valid local e-mail address on destination. What doesn't work is putting a
local e-mail address on source and an external e-mail address on destination
(i.e. gmail), which is the configuration I'm trying to do.

I reviewed the logs and it seems postfix is trying to deliver the e-mail,
but for some reason it doesn't arrive to the destination. I have tried
several different destinations on different external servers to make sure
this is not a problem with the external e-mail address.

Here's an entry from the log file that seems to indicate that the e-mail is
being forwaded:

Jul 22 13:56:23 textilsumar postfix/smtp[19295]: 7F9B32ECBB:
to=<validemailaddr...@gmail.com>, orig_to=<validlocalu...@xxx.cl>,
relay=gmail-smtp-in.l.google.com[74.125.47.27]:25, delay=3.3,
delays=0.07/0/1.2/2, dsn=2.0.0, status=sent (250 2.0.0 OK 1279821298
z9si20732286ank.33)

As I said, the e-mail does not arrive to the gmail account.

¿ Should this configuration work for forwading e-mails to external accounts
? ¿ Is it possible to do this with postfix ?

Regards, 

--
Tomás S.




# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# Debian specific:  Specifying a file name will cause the first
# line of that file to be used as the name.  The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no

# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h

readme_directory = /usr/share/doc/postfix

# TLS parameters
smtpd_tls_cert_file = /etc/postfix/smtpd.cert
smtpd_tls_key_file = /etc/postfix/smtpd.key
smtpd_use_tls = yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = mail.xxx.cl
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = mail.xxx.cl, localhost, localhost.localdomain
relayhost =
mynetworks = 127.0.0.0/8, 192.0.0.0/8
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
html_directory = /usr/share/doc/postfix/html

message_size_limit = 30720000
virtual_alias_domains =
virtual_alias_maps = proxy:mysql:/etc/postfix/mysql-virtual_forwardings.cf,
mysql:/etc/postfix/mysql-virtual_email2email.cf
virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql-virtual_domains.cf
virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql-virtual_mailboxes.cf
virtual_mailbox_base = /home/vmail
virtual_uid_maps = static:5000
virtual_gid_maps = static:5000
smtpd_sasl_auth_enable = yes
broken_sasl_auth_clients = yes
smtpd_sasl_authenticated_header = yes
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated,
reject_unauth_destination
transport_maps = proxy:mysql:/etc/postfix/mysql-virtual_transports.cf
virtual_create_maildirsize = yes
virtual_maildir_extended = yes
virtual_mailbox_limit_maps =
proxy:mysql:/etc/postfix/mysql-virtual_mailbox_limit_maps.cf
virtual_mailbox_limit_override = yes
virtual_maildir_limit_message = "El usuario excedio su cuota de correo"
virtual_overquota_bounce = yes
proxy_read_maps = $local_recipient_maps $mydestination $virtual_alias_maps
$virtual_alias_domains $virtual_mailbox_maps $virtual_mailbox_domains
$relay_recipient_maps $relay_domains $canonical_maps $sender_canonical_maps
$recipient_canonical_maps $relocated_maps $transport_maps $mynetworks
$virtual_mailbox_limit_maps
content_filter = amavis:[127.0.0.1]:10024
receive_override_options = no_address_mappings



-- 
View this message in context: 
http://old.nabble.com/Postfix-e-mail-redirections-to-external-e-mail-addresses-tp29239197p29239197.html
Sent from the Postfix mailing list archive at Nabble.com.

Reply via email to