Hi there,
I am working in a software test environment and need to allow anonymous logins to postfix. What configuration knobs does postfix need?
Cheers


error message from the log:

--- snip ---
status=bounced (host localhost[127.0.0.1] said: 502 5.7.0 anonymous login not supported (in reply to MAIL FROM command))
--- snip ---


mail_version = 3.2.2
milter_macro_v = $mail_name $mail_version

--- /etc/postfix/main.cf ---
egrep -v "^$|^[[:space:]]*#" /etc/postfix/main.cf
compatibility_level = 2
queue_directory = /private/var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
mail_owner = _postfix
unknown_local_recipient_reject_code = 550
debug_peer_level = 2
debugger_command =
         PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
         ddd $daemon_directory/$process_name $process_id & sleep 5
sendmail_path = /usr/sbin/sendmail
newaliases_path = /usr/bin/newaliases
mailq_path = /usr/bin/mailq
setgid_group = _postdrop
html_directory = /usr/share/doc/postfix/html
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix/examples
readme_directory = /usr/share/doc/postfix
inet_protocols = all
message_size_limit = 10485760
mailbox_size_limit = 0
biff = no
mynetworks = 127.0.0.0/8, [::1]/128, <ipBlock>/24
smtpd_client_restrictions = permit_mynetworks permit
recipient_delimiter = +
tls_random_source = dev:/dev/urandom
smtpd_tls_ciphers = medium
inet_interfaces = loopback-only
smtpd_sasl_auth_enable = no
smtpd_sasl_security_options = anonymous
smtpd_relay_restrictions = permit_mynetworks
smtpd_sasl_exceptions_networks = $mynetworks
myhostname = localhost
relayhost = [localhost]:<port>
--- snip ---

Cheers,
Noah

Reply via email to