sendmail: support AUTH PLAIN in addition to AUTH LOGIN
authorRaffaello D. Di Napoli <rafdev@dinapo.li>
Tue, 26 Jun 2018 23:17:45 +0000 (19:17 -0400)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 31 Jul 2018 15:17:40 +0000 (17:17 +0200)
commitf28b8857a9fa7b2b137a19ce7069077da5706d78
treea699ba6077e00505ebb041944eb005d17bd53055
parentc16ae469ef132d7250a509ef5ccf3420e2fc567f
sendmail: support AUTH PLAIN in addition to AUTH LOGIN

Implement the -am argument to allow choosing an AUTH method.
For now only PLAIN and LOGIN are supported, but others can be added
easily in the future.

AUTH PLAIN required adding a new variant of encode_base64() capable of
handling NUL characters in the input string; the old function is now a
wrapper for the newer one.

function                                             old     new   delta
encode_n_base64                                        -     236    +236
sendmail_main                                       1199    1380    +181
packed_usage                                       32873   32877      +4
encode_base64                                        242      36    -206
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 2/1 up/down: 421/-206)          Total: 215 bytes

Signed-off-by: Raffaello D. Di Napoli <rafdev@dinapo.li>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
mailutils/mail.c
mailutils/mail.h
mailutils/sendmail.c