Package: ciderwebmail / 1.05+20240702-1

Metadata

Package Version Patches format
ciderwebmail 1.05+20240702-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
1001_use_Email Address XS.patch | (download)

Makefile.PL | 5 2 + 3 - 0 !
lib/CiderWebmail/Controller/Message.pm | 6 3 + 3 - 0 !
lib/CiderWebmail/Header.pm | 14 7 + 7 - 0 !
lib/CiderWebmail/Mailbox.pm | 1 0 + 1 - 0 !
lib/CiderWebmail/Util.pm | 2 1 + 1 - 0 !
t/04controller_Root.t | 2 0 + 2 - 0 !
t/06-send-message.t | 2 0 + 2 - 0 !
t/addressbook.t | 10 6 + 4 - 0 !
t/append_signature.t | 2 0 + 2 - 0 !
t/compose_message_errorhandling.t | 2 0 + 2 - 0 !
t/hebrew.t | 2 0 + 2 - 0 !
t/html5_validation.t | 2 0 + 2 - 0 !
t/message_handling.t | 10 6 + 4 - 0 !
t/utf8.t | 2 0 + 2 - 0 !
14 files changed, 25 insertions(+), 37 deletions(-)

 fix avoid broken email::address
1002_fix_message_submit.patch | (download)

root/templates/base/compose.xml | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix submit button for sending mail
1003_fix_use_CBC_crypto_block_mode.patch | (download)

lib/CiderWebmail/Util.pm | 4 3 + 1 - 0 !
1 file changed, 3 insertions(+), 1 deletion(-)

 fix hardcode use of cbc crypto block mode
 CiderWebmail declare runtime dependency on Crypt::CBC
 yet does not declare CBC block mode when calling Crypt::Util,
 causing it to use a set of fallback modes with CBC only third option.
 It works but spews lots of backtraces to logfiles.
 .
 Explicitly pass CBC mode to Crypt::Util to silence backtracing noise,
 and possibly speedup processing slightly as well.
 .
 While at it, also fix typo in related error message.