about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2018-12-28 00:22:12 +0000
committerEric Wong <e@80x24.org>2018-12-28 00:22:12 +0000
commitc5d3dc3122323bda426de9251fcbdb2561570c42 (patch)
treebcfe1589303a2f138e00fd48364eccbfc4ec9e01 /t
parent8b8c71076e19732e2267d2c899d90513101aaab3 (diff)
downloadpublic-inbox-c5d3dc3122323bda426de9251fcbdb2561570c42.tar.gz
This can be useful for configuring archives of lists which are
no longer active.
Diffstat (limited to 't')
-rw-r--r--t/reply.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/reply.t b/t/reply.t
index de31f880..cbcd7229 100644
--- a/t/reply.t
+++ b/t/reply.t
@@ -76,4 +76,9 @@ $exp = [
 is_deeply($arg, $exp, 'address obfuscation works');
 is($link, '', 'no mailto: link given');
 
+$ibx->{replyto} = ':none=dead list';
+$ibx->{obfuscate} = 1;
+($arg, $link) = PublicInbox::Reply::mailto_arg_link($ibx, $hdr);
+is($$arg, 'dead list', ':none= works');
+
 done_testing();