Hello,I was so happy with the send-button, that I neglected the issue with the reply, reply to all and forward-buttons, which are not fixed by the patch of fix #3439...
I have applied the same logic to the functions in "UIxMailActions.m" and now they are working to...
I have attached this fix, in case anybody can use it, or forward it to the developers.
With kind regards Patrick Rauter -- Dipl.-Ing.(FH) Patrick Rauter IT Service Center Server Wissenschaftsnetz, Mailsystem, Storage Benutzerverwaltung / LDAP Raum H205 ____________________________________ Hochschule Ravensburg-Weingarten Doggenriedstr. 88250 Weingarten Tel. +49 751 / 501 4602 E-Mail: [email protected] Am 21.01.2016 um 17:24 schrieb Patrick Rauter:
Thanks for the clues. Since dumping the database isn't much trouble on an experimental server I have tried it first, but in my case it didn't helped. Applying the Patch mentioned in http://www.sogo.nu/bugs/view.php?id=3439 is under way, but i experienced some nasty dependency-problems... kind regards Patrick Rauter
64c64,65 < mailboxName = [drafts relativeImap4Name]; --- > mailboxName = [drafts absoluteImap4Name]; // Ex: /INBOX/Drafts/ > mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)]; 108c109,110 < mailboxName = [drafts relativeImap4Name]; --- > mailboxName = [drafts absoluteImap4Name]; // Ex: /INBOX/Drafts/ > mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)]; root@sogov3:~/sogo-3.0.0b5/UI/MailerUI# man diff root@sogov3:~/sogo-3.0.0b5/UI/MailerUI# diff -Naur UIxMailActions.m ~/sogo-3.0.0b5_20160122/UI/MailerUI/UIxMailActions.m --- UIxMailActions.m 2015-12-18 20:44:20.000000000 +0100 +++ /root/sogo-3.0.0b5_20160122/UI/MailerUI/UIxMailActions.m 2016-01-22 11:25:34.000000000 +0100 @@ -61,7 +61,8 @@ [newMail fetchMailForReplying: co toAll: toAll]; accountName = [account nameInContainer]; - mailboxName = [drafts relativeImap4Name]; + mailboxName = [drafts absoluteImap4Name]; // Ex: /INBOX/Drafts/ + mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)]; messageName = [newMail nameInContainer]; data = [NSDictionary dictionaryWithObjectsAndKeys: @@ -105,7 +106,8 @@ [newMail fetchMailForForwarding: co]; accountName = [account nameInContainer]; - mailboxName = [drafts relativeImap4Name]; + mailboxName = [drafts absoluteImap4Name]; // Ex: /INBOX/Drafts/ + mailboxName = [mailboxName substringWithRange: NSMakeRange(1, [mailboxName length] -2)]; messageName = [newMail nameInContainer]; data = [NSDictionary dictionaryWithObjectsAndKeys:
smime.p7s
Description: S/MIME Cryptographic Signature
