Thread Net::SMTP::Server auf Windows 7
(70 answers)
Opened by bianca at 2016-02-29 15:58
Vielleich will Fritz eine andere Reihenfolge.
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 my %_auths = ( PLAIN => \&_auth_plain, LOGIN => \&_auth_login, ); # preferred order of login methods my @_auths = ( LOGIN, PLAIN, ); Code (perl): (dl
)
1 2 3 4 5 6 7 8 sub _ehlo { my $self = shift; my $host = Sys::Hostname::hostname; $self->_put("250 $host MacGyver SMTP"); $self->_put("250-$host"); $self->_put("250-AUTH " . join(" ",@_auths) ); } Last edited: 2016-04-17 10:56:16 +0200 (CEST) |