fix: Mails sent from WebGUI now wrap at 78 characters to prevent a problem with SMTP servers that do not accept lines longer than 998 characters. This is per the SMTP RFCs. Added testing for this fix, still much to test for WebGUI::Mail::Send. Added API method to facilitate testing.

This commit is contained in:
Doug Bell 2008-01-12 07:46:32 +00:00
parent 1127d9dff2
commit 338c494d47
4 changed files with 222 additions and 67 deletions

View file

@ -17,14 +17,13 @@ use FindBin;
use strict;
use lib "$FindBin::Bin/lib";
use Test::More;
use WebGUI::Test; # Must use this before any other WebGUI modules
use WebGUI::Session;
use WebGUI::Test;
#----------------------------------------------------------------------------
# Init
my $session = WebGUI::Test->session;
}
#----------------------------------------------------------------------------
# Tests
@ -38,3 +37,5 @@ plan tests => 1; # Increment this number for each test you create
#----------------------------------------------------------------------------
# Cleanup
END {
}