X-Git-Url: http://git.sthu.org/?a=blobdiff_plain;ds=sidebyside;f=caff%2Fcaff;h=47c4ec89802c7211bfe5f46f18ab63d951fc3dd9;hb=ff38a561c7c7346e088faf334083daecae580a86;hp=bb687a289b97768ce8aa38bc0d385bb0b4c19ab3;hpb=a8e7d4e7b9709d03b69b1fffb721716f4a3ebe4b;p=pgp-tools.git diff --git a/caff/caff b/caff/caff index bb687a2..47c4ec8 100755 --- a/caff/caff +++ b/caff/caff @@ -245,15 +245,6 @@ Add a Reply-To: header to messages sent. Default: none. Address to send blind carbon copies to when sending mail. Default: none. -=item B [string] - -Send mail through specified SMTP server. Default: none (uses -sendmail). - -=item B [string] - -Use specified port for sending mail to SMTP server. Default : 25. - =back =head1 AUTHORS @@ -779,14 +770,7 @@ sub send_mail($$$@) { $message_entity->head->add("Reply-To", $CONFIG{'reply-to'}) if defined $CONFIG{'reply-to'}; $message_entity->head->add("Bcc", $CONFIG{'bcc'}) if defined $CONFIG{'bcc'}; $message_entity->head->add("User-Agent", $USER_AGENT); - - if($CONFIG{'smtp-server'}) { - $message_entity->smtpsend(Host => $CONFIG{'smtp-server'}, - ($CONFIG{'smtp-port'} ? (Port => $CONFIG{'smtp-port'}) : ()), - MailFrom => $CONFIG{'email'}); - } else { - $message_entity->send(); - } + $message_entity->send(); $message_entity->stringify(); };