View | Details | Raw Unified | Return to bug 41011
Collapse All | Expand All

(-)./Makefile (-1 / +8 lines)
Lines 21-27 Link Here
21
#
21
#
22
# In general you can choose between using the SLANG port (WITH_MUTT_SLANG)
22
# In general you can choose between using the SLANG port (WITH_MUTT_SLANG)
23
# and ncurses (WITH_MUTT_NCURSES) which is the default. Note that you may
23
# and ncurses (WITH_MUTT_NCURSES) which is the default. Note that you may
24
# have to set the variables COLORTERM=yes and COLORFGBG=color,color in your 
24
# have to set the variables COLORTERM=yes and COLORFGBG=color,color in your
25
# environment to get slang function properly.
25
# environment to get slang function properly.
26
#
26
#
27
# If you want to install the mutt documentation in html format define:
27
# If you want to install the mutt documentation in html format define:
Lines 50-55 Link Here
50
# If you want to enable the pgp_outlook_compat function for use with pgp define:
50
# If you want to enable the pgp_outlook_compat function for use with pgp define:
51
#  WITH_MUTT_PGP_OUTLOOK_PATCH
51
#  WITH_MUTT_PGP_OUTLOOK_PATCH
52
#
52
#
53
# If you want to disable a outlook_compat function for use with smime define:
54
#  WITHOUT_MUTT_SMIME_OUTLOOK_COMPAT
55
#
53
# If you want to use the rethreading functions define:
56
# If you want to use the rethreading functions define:
54
#  WITH_MUTT_EDIT_THREADS
57
#  WITH_MUTT_EDIT_THREADS
55
58
Lines 160-165 Link Here
160
.if defined(WITH_MUTT_PGP_OUTLOOK_PATCH)
163
.if defined(WITH_MUTT_PGP_OUTLOOK_PATCH)
161
pre-configure::
164
pre-configure::
162
	${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-pgp-outlook
165
	${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-pgp-outlook
166
.endif
167
.if defined(WITHOUT_MUTT_SMIME_OUTLOOK_COMPAT)
168
pre-configure::
169
	${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-smime-no-outlook
163
.endif
170
.endif
164
171
165
.if defined(WITH_MUTT_LOCALES_FIX)
172
.if defined(WITH_MUTT_LOCALES_FIX)
(-)./files/extra-patch-smime-no-outlook (+11 lines)
Line 0 Link Here
1
--- smime.c.orig	Thu May  2 01:20:42 2002
2
+++ smime.c	Fri Jul 26 18:15:19 2002
3
@@ -144,7 +144,7 @@
4
     {
5
       len++;
6
       if (!ascii_strcasecmp ((t+len), "p7m"))
7
-#if 0
8
+#if 1
9
        return SMIMEENCRYPT;
10
 #else
11
       /* Not sure if this is the correct thing to do, but

Return to bug 41011