fix test (thanks John & Peter)

update MANIFEST to not include files that are not included :-)


git-svn-id: https://svn.perl.org/qpsmtpd/trunk@338 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
Ask Bjørn Hansen 2004-11-16 02:07:39 +00:00
parent f00b5c7012
commit 452c0746d0
2 changed files with 1 additions and 4 deletions

View File

@ -8,13 +8,11 @@ config/relayclients
config/require_resolvable_fromhost
config/rhsbl_zones
CREDITS
lib/Danga/Socket.pm
lib/Qpsmtpd.pm
lib/Qpsmtpd/Address.pm
lib/Qpsmtpd/Auth.pm
lib/Qpsmtpd/Connection.pm
lib/Qpsmtpd/Constants.pm
lib/Qpsmtpd/DNS.pm
lib/Qpsmtpd/Plugin.pm
lib/Qpsmtpd/Postfix.pm
lib/Qpsmtpd/SelectServer.pm
@ -38,7 +36,6 @@ plugins/check_spamhelo
plugins/content_log
plugins/count_unrecognized_commands
plugins/dnsbl
plugins/fprot_scan
plugins/http_config
plugins/ident/geoip
plugins/ident/p0f

View File

@ -71,7 +71,7 @@ $ao = Qpsmtpd::Address->new($as);
ok ($ao, "new $as");
is ($ao->format, $as, "format $as");
$as = 'foo@foo.x.example.com';
$as = '<foo@foo.x.example.com>';
ok ($ao = Qpsmtpd::Address->parse($as), "parse $as");
is ($ao && $ao->address, $as, "address $as");