Index: openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl 10 Sep 2002 22:22:09 -0000 1.4 +++ openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl 17 May 2003 09:53:28 -0000 1.5 @@ -26,6 +26,11 @@ set eh_list "" } + # Subject can not be longer than 200 characters + if { [string length $subject] > 200 } { + set subject "[string range $subject 0 196]..." + } + db_dml create_queue_entry {} }