aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/passwordauth:_sendmail_interface.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2007-12-28 07:36:11 -0500
committerJoey Hess <joey@kitenet.net>2007-12-28 07:36:11 -0500
commit2f8123012c9a6ad077b856d7f801346a4d9800fe (patch)
treead0f8350a68588f81469f87e598e959f7bcbf3f0 /doc/todo/passwordauth:_sendmail_interface.mdwn
parentc11ded60a8c96f5b78707d592ebac49eaa5520ce (diff)
downloadikiwiki-2f8123012c9a6ad077b856d7f801346a4d9800fe.tar
ikiwiki-2f8123012c9a6ad077b856d7f801346a4d9800fe.tar.gz
web commit by tschwinge: passwordauth: sendmail interface
Diffstat (limited to 'doc/todo/passwordauth:_sendmail_interface.mdwn')
-rw-r--r--doc/todo/passwordauth:_sendmail_interface.mdwn25
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/todo/passwordauth:_sendmail_interface.mdwn b/doc/todo/passwordauth:_sendmail_interface.mdwn
new file mode 100644
index 000000000..0ae413413
--- /dev/null
+++ b/doc/todo/passwordauth:_sendmail_interface.mdwn
@@ -0,0 +1,25 @@
+[[tag wishlist]]
+
+For sending out password reminder emails, the [[plugins/passwordauth]] plugin currently uses
+the *[Mail::Sendmail](http://search.cpan.org/perldoc?Mail::Sendmail)* module.
+This module, however, has the limitation that it can only talk *SMPT*,
+but can't use the standard Unix *sendmail* (command-line) interface.
+I don't want to have an MTA with a SMTPd running on my web server system.
+Would it be possible to switch to using one of the existing Perl modules that support
+the *sendmail* interface?
+
+From doing a quick search, these might be some candidates:
+
+ * <http://search.cpan.org/perldoc?Mail::Transport::Sendmail>
+ * <http://search.cpan.org/perldoc?Email::Send::Sendmail>
+ * <http://search.cpan.org/perldoc?Mail::SendVarious>
+ * <http://search.cpan.org/perldoc?EasyMail>
+
+None of them are packaged for Debian so far, but that should be doable easily, as far as I know.
+
+ikiwiki might perhaps even try to use all of them in turn until it finds a working one.
+
+I'd offer to work on a patch for the [[plugins/passwordauth]] plugin and other places
+in the ikiwiki source code, where emailing is done.
+
+--[[tschwinge]]