Hi list I have diferent mailman lists mounted and I detected a problem making tests to access, If I use telnet using other mailserver (mailserver.es) I receive this information:
telnet mail.mydomain.com 25 Trying 84.88.68.66... Connected to mail.mydomain.com. Escape character is '^]'. 220 jupiter.mydomain.com ESMTP Postfix (Ubuntu) ehlo hola 250-jupiter.mydomain.com 250-PIPELINING 250-SIZE 20240000 250-VRFY 250-ETRN 250-STARTTLS 250-ENHANCEDSTATUSCODES 250-8BITMIME 250 DSN mail from: <jorge.gar...@mailserver.es> 250 2.1.0 Ok rcpt to: <wrongl...@lists.mydomain.com> 250 2.1.5 Ok data 354 End data with <CR><LF>.<CR><LF> subject: test test . 250 2.0.0 Ok: queued as 078C028A502 quit 221 2.0.0 Bye Connection closed by foreign host. but wronglist not exist. How it's possible this? Im using postfix making a relay, I post my postconf -n: alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases append_dot_mydomain = no biff = no broken_sasl_auth_clients = no config_directory = /etc/postfix debug_peer_level = 1 debug_peer_list = 127.0.0.1 delay_warning_time = 1h home_mailbox = inet_interfaces = all mailbox_command = /usr/lib/dovecot/deliver mailbox_size_limit = 0 mailbox_transport = dovecot message_size_limit = 20240000 mydestination = mydomain.com, alum.mydomain.com, admi.mydomain.com, prof.mydomain.com, aalum.mydomain.com, test.mydomain.com, localhost.mydomain.com, localhost myhostname = jupiter.mydomain.com mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 10.0.0.0/24 192.168.10.0/24 193.145.56.0/24 84.88.68.64/28 myorigin = /etc/mailname readme_directory = no recipient_bcc_maps = hash:/etc/postfix/recipient_bcc recipient_delimiter = + relay_domains = lists.mydomain.com, autoreply.mydomain.com relayhost = 10.0.0.10 smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache smtp_use_tls = yes smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) smtpd_recipient_restrictions = permit_mynetworks, reject_unauth_destination smtpd_sasl_auth_enable = no smtpd_sasl_authenticated_header = no smtpd_sasl_local_domain = smtpd_sasl_path = smtpd smtpd_sasl_security_options = noanonymous smtpd_sasl_type = cyrus smtpd_sender_login_maps = ldap:/etc/postfix/ldap_aliases.cf ,ldap:/etc/postfix/ldap_aliases2.cf smtpd_sender_restrictions = smtpd_tls_auth_only = no smtpd_tls_cert_file = /etc/ssl/certs/venus.crt smtpd_tls_key_file = /etc/ssl/private/venus.key smtpd_tls_mandatory_ciphers = medium smtpd_tls_mandatory_protocols = SSLv3, TLSv1 smtpd_tls_received_header = no smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtpd_use_tls = yes tls_random_source = dev:/dev/urandom transport_maps = hash:/etc/postfix/transport unknown_local_recipient_reject_code = 550 virtual_alias_maps = ldap:/etc/postfix/ldap_aliases.cf,ldap:/etc/postfix/ ldap_aliases2.cf virtual_mailbox_base = /var/spool/dovecot/ virtual_mailbox_maps = ldap:/etc/postfix/ldap_aliases.cf,ldap:/etc/postfix/ ldap_aliases2.cf virtual_transport = dovecot Thanks