Files
ports/mail/courier/files/extra-patch-libs__sqwebmail__msg2html.c
T
Guido Falsi d177096538 mail/courier: Update to 1.5.1
The update fixes build with devel/courier-unicode 2.4.0

While here modernize and cleanup port:

- Modernize RUN_DEPENDS syntax
- Convert to USES=localbase
- Retire Noop options RCCONF and PERIODIC
- Convert to option helpers where possible/convenient
- Configure script unconditionally checks for gnupg, but in wrong
  path. So, moved it as unconditional RUN_DEPENDS, using helper ENV
  var to point to correct executable
- Sort variable and values (intentionally keeping ASPELL and ISPELL
  near though)
- Removed redundant pre-everything echoing well known information
- Fixed sqwebmail extra patches names/paths
- Fixed sqwebmail extra patch generating code that failed to compile

PR:		290504, 285602
2025-10-27 22:19:15 +01:00

45 lines
1.2 KiB
C

--- libs/sqwebmail/msg2html.c.orig 2007-07-11 03:36:04.000000000 +0200
+++ libs/sqwebmail/msg2html.c 2007-12-21 08:42:02.000000000 +0100
@@ -451,6 +451,7 @@
char *header, *value;
char *save_subject=0;
char *save_date=0;
+char *save_xface=0;
off_t start_pos, end_pos, start_body;
struct rfc2045id *p, newpart;
off_t dummy;
@@ -523,6 +524,13 @@
free(header);
continue;
}
+ if (strcmp(header, "x-face") == 0)
+ {
+ if (save_xface) free(save_xface);
+ save_xface=strdup(value);
+ free(header);
+ continue;
+ }
if (isaddressheader(header))
{
print_header_uc(info, header);
@@ -575,7 +583,18 @@
if (flag && info->message_rfc822_action)
(*info->message_rfc822_action)(idptr);
- printf("</table>\n<hr width=\"100%%\" />\n");
+ if (save_xface)
+ {
+ char *q=cgiurlencode(save_xface);
+ printf("</table>\n</td><td align=\"right\"><img width=\"48\" heigth=\"48\" src=\"http://www.dairiki.org/xface/xface.php?xface=");
+ printf("%s", q);
+ printf("&amp;preview=1\"></td></tr><tr><td colspan=\"2\"><hr width=\"100%%\">\n");
+ free(q);
+ }
+ else
+ {
+ printf("</table>\n<hr width=\"100%%\" />\n");
+ }
if (!flag && info->gpgdir && libmail_gpg_has_gpg(info->gpgdir) == 0
&& libmail_gpgmime_has_mimegpg(rfc)