<<< Date Index >>>     <<< Thread Index >>>

Re: issue with smime and mutt 1.5.5.1



On Sun, Jan 04, 2004 at 05:14:40PM -0600, Will Fiveash wrote:
> Note, in the config.h:
> config.h:#define CRYPT_BACKEND_CLASSIC_PGP 1
> 
> and in mutt_crypt.h:
> 
> #if defined(CRYPT_BACKEND_CLASSIC_PGP) && defined(CRYPT_BACKEND_CLASSIC_SMIME)
> # define WithCrypto (APPLICATION_PGP | APPLICATION_SMIME)

Forget the config.h and mutt_crypt.h comments as they aren't relevant.
The code below in crypt.c is since the WithCrypto check is at runtime
and not compile/link time which is where the unresolved symbols error is
occurring.

> and in crypt.c:
> 
>   if ((WithCrypto & APPLICATION_SMIME) && (flags & APPLICATION_SMIME))
>   {
>     extern char SmimePass[STRING];
>     extern time_t SmimeExptime;
> 

-- 
Will Fiveash