iredmail-doc/it_IT/howto/allow.user.to.send.email.without.authentication.md
Zhang Huangbin b3bdcec4da 4 new Italian translations, thanks to Joseph Curto:
A html/allow.member.to.send.email.as.mail.list-it_IT.html
A html/allow.user.to.send.email.without.authentication-it_IT.html
A html/amavisd.per-recipient.policy.lookup-it_IT.html
A html/amavisd.wblist-it_IT.html
A it_IT/howto/allow.member.to.send.email.as.mail.list.md
A it_IT/howto/allow.user.to.send.email.without.authentication.md
A it_IT/howto/amavisd.per-recipient.policy.lookup.md
A it_IT/howto/amavisd.wblist.md
2016-05-25 17:50:06 +08:00

794 B
Raw History

Abilitare utente ad inviare mail senza l'autenticazione smtp

Create questo file di testo: /etc/postfix/accepted_unauth_senders, elencandoci tutti gli indirizzi mail degli utenti abilitati ad inviare posta senza l'autenticazione smtp. Verrà usato l'indirizzo user@example.com come esempio:

user@example.com OK

Create un file db hash con il comando postmap :

# postmap hash:/etc/postfix/accepted_unauth_senders

Modificate il file di configurazione di Postfix /etc/postmap/main.cf affinché uso questo file di testo:

smtpd_sender_restrictions = 
    check_sender_access hash:/etc/postfix/accepted_unauth_senders,
    [...OTHER RESTRICTIONS HERE...]

Riavviate/ricaricate Postfix per rendere effettiva la modifica.

# /etc/init.d/postfix restart