]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/passwordauth:_sendmail_interface.mdwn
Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
[ikiwiki.git] / doc / todo / passwordauth:_sendmail_interface.mdwn
1 [[tag wishlist]]
2
3 For sending out password reminder emails, the [[plugins/passwordauth]] plugin currently uses
4 the *[Mail::Sendmail](http://search.cpan.org/perldoc?Mail::Sendmail)* module.
5 This module, however, has the limitation that it can only talk *SMPT*,
6 but can't use the standard Unix *sendmail* (command-line) interface.
7 I don't want to have an MTA with a SMTPd running on my web server system.
8 Would it be possible to switch to using one of the existing Perl modules that support
9 the *sendmail* interface?
10
11 From doing a quick search, these might be some candidates:
12
13   * <http://search.cpan.org/perldoc?Mail::Transport::Sendmail>
14   * <http://search.cpan.org/perldoc?Email::Send::Sendmail>
15   * <http://search.cpan.org/perldoc?Mail::SendVarious>
16   * <http://search.cpan.org/perldoc?EasyMail>
17
18 None of them are packaged for Debian so far, but that should be doable easily, as far as I know.
19
20 ikiwiki might perhaps even try to use all of them in turn until it finds a working one.
21
22 I'd offer to work on a patch for the [[plugins/passwordauth]] plugin and other places
23 in the ikiwiki source code, where emailing is done.
24
25 --[[tschwinge]]