diff options
author | https://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web> | 2013-04-13 11:46:28 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2013-04-13 11:46:28 -0400 |
commit | cdeb0cb9954a7dab115890f8d1939848ffd73434 (patch) | |
tree | 5db43062b124132291ee8bf2de0cab72417c58bb /doc | |
parent | cd8b8877b7bbf6b5be56fe55ebd541f51e7bc437 (diff) | |
download | ikiwiki-cdeb0cb9954a7dab115890f8d1939848ffd73434.tar ikiwiki-cdeb0cb9954a7dab115890f8d1939848ffd73434.tar.gz |
show how to create a mailman subscription form in iki
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tips/mailman_subscription_form.mdwn | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/tips/mailman_subscription_form.mdwn b/doc/tips/mailman_subscription_form.mdwn new file mode 100644 index 000000000..3e9ed0786 --- /dev/null +++ b/doc/tips/mailman_subscription_form.mdwn @@ -0,0 +1,10 @@ +One can think about implementing "[[Mailman integration]]" or something, but I find that rather overdoing it. Mailman is simple enough that you can add a clean subscription form to your ikiwiki site in seconds, just add: + +~~~~ +<form action="https://listes.example.com/cgi-bin/mailman/subscribe/listname" method="POST"> +Email: <input name="email" /> +<input type="submit" value="Subscribe" /> +</form> +~~~~ + +To your site and voilĂ , you are done! No more scary mailman subscription form! (Thanks to [[bgm]] for that trick!) --[[anarcat]] |