about summary refs log tree commit homepage
path: root/script/public-inbox-init
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-05-14 06:10:36 +0000
committerEric Wong <e@80x24.org>2016-05-16 02:55:58 +0000
commit48b21cb662c1e17b7219612bff6ea14b98c85221 (patch)
tree1f5b29c80c52dea26f1a9f33fae9cbe515e3debf /script/public-inbox-init
parent56008dad820a47fe70d2d69a51248ff1b87beabf (diff)
downloadpublic-inbox-48b21cb662c1e17b7219612bff6ea14b98c85221.tar.gz
From the beginning, we've avoided objects here in favor
of faster startup time; but it may not be worth it
since a persistent httpd/nntpd is faster and -mda
isn't hit as often.
Diffstat (limited to 'script/public-inbox-init')
-rwxr-xr-xscript/public-inbox-init4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/public-inbox-init b/script/public-inbox-init
index ca0f9ddf..54d6ce4c 100755
--- a/script/public-inbox-init
+++ b/script/public-inbox-init
@@ -43,10 +43,10 @@ if (-e $pi_config) {
         foreach my $addr (@address) {
                 my $found = $cfg->lookup($addr);
                 if ($found) {
-                        if ($found->{inbox} ne $name) {
+                        if ($found->{name} ne $name) {
                                 print STDERR
                                         "`$addr' already defined for ",
-                                        "`$found->{inbox}',\n",
+                                        "`$found->{name}',\n",
                                         "does not match intend `$name'\n";
                                 $conflict = 1;
                         } else {