[Bug 11770] New: mapi32.dll. so does not support attachments for sending mail
http://bugs.winehq.org/show_bug.cgi?id=11770 Summary: mapi32.dll.so does not support attachments for sending mail Product: Wine Version: 0.9.56. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: enhancement Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: Mark_Neyhart(a)legis.state.ak.us Applications like Microsoft Excel 2002 and Word 2002 have a File...Send To function which should bring up an email client with the current file attached. The DLL override mapi32.dll.so does not support attachments. The sendmail.c source for this dll has a FIXME which outputs "Ignoring attachments". -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Lei Zhang <thestig(a)google.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 --- Comment #1 from Lei Zhang <thestig(a)google.com> 2008-02-28 15:35:11 --- There's been a few attempts, but none of them made it into Wine. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Hans Leidekker <hans(a)it.vu.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hans(a)it.vu.nl --- Comment #2 from Hans Leidekker <hans(a)it.vu.nl> 2008-02-29 05:00:28 --- Marks attempt at fixing this bug: http://www.winehq.org/pipermail/wine-patches/2007-December/048198.html And the discussion that followed: http://www.winehq.org/pipermail/wine-devel/2007-December/061349.html -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Mark Neyhart <Mark_Neyhart(a)legis.state.ak.us> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Mark_Neyhart(a)legis.state.ak. | |us --- Comment #3 from Mark Neyhart <Mark_Neyhart(a)legis.state.ak.us> 2008-02-29 12:01:18 --- That was me with an earlier patch submission. I got busy after the initial discussion and am finally taking another look at this. I looked at winebrowser per Hans' recommendation and I have come up against the issue of how any given email client will support attachments from the command line. I know how thunderbird and xdg-email work and have found references describing how kmail and evolution work as well. Just these four clients have four different methods. Rather than attempt to discern between the different methods within winebrowser I am tempted to modify winebrowser so that it uses an attachment only when calling xdg-email, and to let xdg-email sort out the differences. Should a discussion like this be here or on the devoloper mailing list? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #4 from Hans Leidekker <hans(a)it.vu.nl> 2008-02-29 12:32:42 ---
Rather than attempt to discern between the different methods within winebrowser I am tempted to modify winebrowser so that it uses an attachment only when calling xdg-email, and to let xdg-email sort out the differences.
Yes, that's the way forward. Perhaps you can make the command line parameter compatible with xdg-email so that you can pass through the argument without additional processing. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #5 from Tefnet developers <developers(a)tefnet.pl> 2008-04-02 08:20:19 --- Created an attachment (id=11805) --> (http://bugs.winehq.org/attachment.cgi?id=11805) mapi32 MAPISendMail attachments support Here is Marks patch for current version of Wine. I've modified it a little bit because for some reason message->lpFiles[i].lpszFileName was always NULL even if message->lpFiles[i].lpszPathName was set. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #6 from Austin English <austinenglish(a)gmail.com> 2009-03-30 12:45:08 --- Is this still an issue in current (1.1.18 or newer) wine? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Tefnet developers <developers(a)tefnet.pl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |developers(a)tefnet.pl --- Comment #7 from Tefnet developers <developers(a)tefnet.pl> 2009-04-06 04:18:03 --- (In reply to comment #6)
Is this still an issue in current (1.1.18 or newer) wine?
Yes it is... in dlls/mapi32/sendmail.c --- if (message->nFileCount) FIXME("Ignoring attachments\n"); --- but patch posted in this bug report still works... -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #8 from Austin English <austinenglish(a)gmail.com> 2009-04-06 11:05:00 --- Adding a testcase and submitting it to wine-patches would help... -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #9 from Tefnet developers <developers(a)tefnet.pl> 2009-04-06 11:26:24 --- (In reply to comment #8)
Adding a testcase and submitting it to wine-patches would help...
1. I have no idea how to write tests for this case... It uses external native app (xdg-open/xdg-email) to prepare an email... Tell me if you know how to do it in non-interactive way then I will try to write it... 2. Patch is not mine... I've only updated it for current wine... -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #10 from Austin English <austinenglish(a)gmail.com> 2009-04-06 12:06:06 --- (In reply to comment #9)
(In reply to comment #8)
Adding a testcase and submitting it to wine-patches would help...
1. I have no idea how to write tests for this case... It uses external native app (xdg-open/xdg-email) to prepare an email... Tell me if you know how to do it in non-interactive way then I will try to write it...
Yeah, just looked at the patch, ignore that comment.
2. Patch is not mine... I've only updated it for current wine...
Send it in, and say 'based on patch by Mark Neyhart'. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #11 from Tefnet developers <developers(a)tefnet.pl> 2009-04-07 03:04:25 --- (In reply to comment #10)
(In reply to comment #9)
(In reply to comment #8)
Adding a testcase and submitting it to wine-patches would help...
1. I have no idea how to write tests for this case... It uses external native app (xdg-open/xdg-email) to prepare an email... Tell me if you know how to do it in non-interactive way then I will try to write it...
Yeah, just looked at the patch, ignore that comment.
2. Patch is not mine... I've only updated it for current wine...
Send it in, and say 'based on patch by Mark Neyhart'.
First we need to handle bug #12326 because even if this patch will generate proper mailto url for xdg-mail, it will be cut in the middle because it won't fit into wfileName[MAX_PATH] (more to read in bug report #12326) -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #12 from Austin English <austinenglish(a)gmail.com> 2009-10-12 14:37:54 --- Owen recently did a lot of work on this: http://source.winehq.org/git/wine.git/?a=history;f=dlls/mapi32;hb=HEAD I think this may be fixed now. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Owen Rudge <owen(a)owenrudge.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |owen(a)owenrudge.net --- Comment #13 from Owen Rudge <owen(a)owenrudge.net> 2009-11-11 16:27:48 --- (In reply to comment #12)
Owen recently did a lot of work on this: http://source.winehq.org/git/wine.git/?a=history;f=dlls/mapi32;hb=HEAD
I think this may be fixed now.
It should be fixed for Windows-based mail clients, but native clients will still not support attachments. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #14 from Austin English <austinenglish(a)gmail.com> 2009-11-11 21:03:25 --- (In reply to comment #13)
(In reply to comment #12)
Owen recently did a lot of work on this: http://source.winehq.org/git/wine.git/?a=history;f=dlls/mapi32;hb=HEAD
I think this may be fixed now.
It should be fixed for Windows-based mail clients, but native clients will still not support attachments.
Using xdg-mail? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #15 from Owen Rudge <owen(a)owenrudge.net> 2009-11-12 01:51:30 --- (In reply to comment #14)
Using xdg-mail?
As you can see at: http://source.winehq.org/git/wine.git/?a=blob;f=dlls/mapi32/sendmail.c;h=cbb... attachment support is simply not included in the fallback routine, which uses the system default mail client. Mainly because there is no universal protocol for attachments via mailto: - certain clients ignore attachments completely, or know of them but disallow them, or just don't know of them and ignore the entire request, as discussed in the other comments. Ideally, what needs implementing is a Wine-specific MAPI provider which passes through MAPI calls to the native mail client (possibly via xdg-mail on Linux, for instance). At the moment, if any Windows MAPI provider (eg, Outlook, OE, Thunderbird) is installed, the fallback routine is ignored. Providing a Wine MAPI provider would mean it would be listed in the list of mail clients in Internet Options, and the user could therefore pick such a mail client as their preference. This is something I might do at some point - it would be relatively straightforward. But the attachment issue is still a problem as long as e-mail clients have no agreed way of programmatically attaching files to mails. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #16 from Austin English <austinenglish(a)gmail.com> 2009-11-12 11:45:31 --- (In reply to comment #15)
(In reply to comment #14)
Using xdg-mail?
As you can see at:
http://source.winehq.org/git/wine.git/?a=blob;f=dlls/mapi32/sendmail.c;h=cbb...
attachment support is simply not included in the fallback routine, which uses the system default mail client. Mainly because there is no universal protocol for attachments via mailto: - certain clients ignore attachments completely, or know of them but disallow them, or just don't know of them and ignore the entire request, as discussed in the other comments.
Ideally, what needs implementing is a Wine-specific MAPI provider which passes through MAPI calls to the native mail client (possibly via xdg-mail on Linux, for instance). At the moment, if any Windows MAPI provider (eg, Outlook, OE, Thunderbird) is installed, the fallback routine is ignored. Providing a Wine MAPI provider would mean it would be listed in the list of mail clients in Internet Options, and the user could therefore pick such a mail client as their preference.
Perhaps this bug should be closed and a new one opened...
This is something I might do at some point - it would be relatively straightforward. But the attachment issue is still a problem as long as e-mail clients have no agreed way of programmatically attaching files to mails.
Perhaps propose a standard to xdg(a)lists.freedesktop.org / https://bugs.freedesktop.org/ ? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #17 from Austin English <austinenglish(a)gmail.com> 2010-05-19 16:53:12 --- (In reply to comment #16)
(In reply to comment #15)
This is something I might do at some point - it would be relatively straightforward. But the attachment issue is still a problem as long as e-mail clients have no agreed way of programmatically attaching files to mails.
Perhaps propose a standard to xdg(a)lists.freedesktop.org / https://bugs.freedesktop.org/ ?
Actually, seems attachments are standardized with xdg-email --attach file see: http://ohnopublishing.net/doc/xdg-utils-1.0.2-r3/html/html/xdg-email.html -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #18 from Austin English <austinenglish(a)gmail.com> 2011-08-08 20:14:13 CDT --- 2bdcee13a083f68ef8482aa85f7859ee887a738b and b4b7724a790af8fdab693ef5d422a1b84d7941a7 seem related. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #19 from Owen Rudge <owen(a)owenrudge.net> 2011-08-09 05:15:02 CDT --- (In reply to comment #18)
2bdcee13a083f68ef8482aa85f7859ee887a738b and b4b7724a790af8fdab693ef5d422a1b84d7941a7 seem related.
2bdcee13 adds support for sending attachments in a particular case - when a MAPI provider has been selected that only offers an Extended MAPI interface, not Simple MAPI. MS Outlook is one such application. It'll make no difference to the default Wine MAPI provider. The code that was in b4b7724a is now in winemapi, but that just attempts to start whatever program handles the "mailto" protocol, which doesn't have (guaranteed) support for attachments. We can't assume that xdg-email will be available though (e.g., on OS X it definitely won't be). In theory we could try to see if xdg-email is present and use it if found, falling back to mailto: afterwards. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 André H. <nerv(a)dawncrow.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nerv(a)dawncrow.de --- Comment #20 from André H. <nerv(a)dawncrow.de> 2012-12-17 17:09:01 CST --- bug still present in wine-1.5.19 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Wylda <wylda(a)volny.cz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wylda(a)volny.cz -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11770 Vijay Kamuju <infyquest(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |infyquest(a)gmail.com --- Comment #21 from Vijay Kamuju <infyquest(a)gmail.com> --- Could you please test with 1.7.x latest version -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #22 from Austin English <austinenglish(a)gmail.com> --- (In reply to Vijay Kamuju from comment #21)
Could you please test with 1.7.x latest version
It's still present in 1.7.51. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 Jeremy White <jwhite(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jwhite(a)codeweavers.com --- Comment #23 from Jeremy White <jwhite(a)codeweavers.com> --- I've spent some time exploring this. I considered three approaches. The first involved modifying winebrowser to add an &attach= stanza to the mailto URI. That works with xdg-email and Thunderbird on XFCE on Linux. It's not clear if it would work anywhere else, and the &attach= expression is not a documented part of the mailto uri specification. The second approach was to create an xdgmime dll, parallel to the winemapi dll. The downside to that is that the mapi32 specification does not seem to allow for any sort of cascade or fallback, or any way to intelligently set a default provider. So while that felt more correct in some ways, it seemed likely to result in bit rot, and thus be less desirable. Finally, I decided to modify winemapi dll itself to look for xdg-email, and if found, use it directly, rather than going through winebrowser. A patch with this change was submitted here: https://www.winehq.org/pipermail/wine-devel/2016-November/115298.html -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #24 from Mark Neyhart <Mark.Neyhart(a)akleg.gov> --- Created attachment 60687 --> https://bugs.winehq.org/attachment.cgi?id=60687 Patch winemapi.dll to support SendTo from Excel and Word -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #25 from Mark Neyhart <Mark.Neyhart(a)akleg.gov> --- Comment on attachment 60687 --> https://bugs.winehq.org/attachment.cgi?id=60687 Patch winemapi.dll to support SendTo from Excel and Word Here is the latest version of the patch that I have been using for the last 10 years. It uses WineBrowser to call xdg-email. Required registry entries are [HKEY_CURRENT_USER\Software\Wine\WineBrowser] "Mailers"="xdg-email" [HKEY_LOCAL_MACHINE\Software\Clients\Mail] @="Native Mail Client" I have been using this successfully to support the Send To function for Word 2003, Word 2007, Excel 2003, and Excel 2007 in various versions of Crossover Office. It uses temporary files to hold the attachments which do not get cleaned up because I don't know when the email client is done with them. The code is written to support multiple attachments, but I don't know how well it works because Word and Excel only attach one file via the Send To function. WineBrowser seems to handle the &attach= parameter without issue. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #26 from Austin English <austinenglish(a)gmail.com> --- (In reply to Mark Neyhart from comment #25)
Comment on attachment 60687 [details] Patch winemapi.dll to support SendTo from Excel and Word
Here is the latest version of the patch that I have been using for the last 10 years. It uses WineBrowser to call xdg-email. Required registry entries are
[HKEY_CURRENT_USER\Software\Wine\WineBrowser] "Mailers"="xdg-email"
[HKEY_LOCAL_MACHINE\Software\Clients\Mail] @="Native Mail Client"
I have been using this successfully to support the Send To function for Word 2003, Word 2007, Excel 2003, and Excel 2007 in various versions of Crossover Office. It uses temporary files to hold the attachments which do not get cleaned up because I don't know when the email client is done with them. The code is written to support multiple attachments, but I don't know how well it works because Word and Excel only attach one file via the Send To function.
WineBrowser seems to handle the &attach= parameter without issue.
I can confirm this works with Advanced SystemCare (bug 40534), which tries to attach its bug report to an email to send to its support team. Without the patch it opens thunderbird with a subject/to, but no attachments. With it, my bug report and screenshot are attached. @Mark, if you're not aware, patches are not picked up from bugzilla. Please see https://wiki.winehq.org/Submitting_Patches for how to send your patch into Wine. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |leslie_alistair(a)hotmail.com --- Comment #27 from Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> ---
I can confirm this works with Advanced SystemCare (bug 40534), which tries to attach its bug report to an email to send to its support team. Without the patch it opens thunderbird with a subject/to, but no attachments. With it, my bug report and screenshot are attached.
@Austin, does Jeremy's patch from #c23 fix the problem? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |austinenglish(a)gmail.com -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 --- Comment #28 from Austin English <austinenglish(a)gmail.com> --- (In reply to Alistair Leslie-Hughes from comment #27)
I can confirm this works with Advanced SystemCare (bug 40534), which tries to attach its bug report to an email to send to its support team. Without the patch it opens thunderbird with a subject/to, but no attachments. With it, my bug report and screenshot are attached.
@Austin, does Jeremy's patch from #c23 fix the problem?
Yep, both Jeremy and Mark's patches fix attaching files to a Thunderbird draft. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Staged patchset| |https://github.com/wine-sta | |ging/wine-staging/tree/mast | |er/patches/winemapi-user-xd | |g-mail Status|NEW |STAGED -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 tokktokk <fdsfgs(a)krutt.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fdsfgs(a)krutt.org -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 Zeb Figura <z.figura12(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |99c1a343c1865cece709d73e978 | |fbac7ea04f753 Resolution|--- |FIXED Status|STAGED |RESOLVED CC| |z.figura12(a)gmail.com --- Comment #29 from Zeb Figura <z.figura12(a)gmail.com> --- Fixed by 99c1a343c1865cece709d73e978fbac7ea04f753. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=11770 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #30 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 9.17. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (2)
-
wine-bugs@winehq.org -
WineHQ Bugzilla