[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Phpgroupware-developers] 0.9.14 Mail Bug??
From: |
Chris Weiss |
Subject: |
Re: [Phpgroupware-developers] 0.9.14 Mail Bug?? |
Date: |
Wed, 22 May 2002 17:31:26 +0000 |
it's RH 7.3. Changing that line in the default email app should work too.
Joel Webb (address@hidden) wrote*:
>
>Ahhhhhhh!
>
>Thanks sooo much. I didn't know if it was me upgrading to RH7.3 or upgrading
>the PHPGW to 0.9.14 . I did them at the same time. Alas, I upgraded to
>Angles email and man it works great.
>
>Thanks everybody for your input.
>
>
>
>----- Original Message -----
>From: "Chris Weiss" <address@hidden>
>To: <address@hidden>
>Sent: Wednesday, May 22, 2002 10:11 AM
>Subject: Re: [Phpgroupware-developers] 0.9.14 Mail Bug??
>
>
>> Bingo!
>>
>> Edit email/inc/class.mail_msg_base.inc.php
>> Search for "novalidate-cert" you will find a case staement like this one:
>> switch($this->get_pref_value('mail_server_type',
>$acctnum))
>> {
>> case 'imaps': // IMAP over SSL
>> $extra =
>'/imap/ssl/novalidate-cert';
>> break;
>> case 'pop3s': // POP3 over SSL
>> $extra = '/pop3/ssl';
>> break;
>> case 'pop3': // POP3 normal connection,
>No SSL
>> $extra = '/pop3';
>> break;
>> case 'imap': // IMAP normal connection,
>No SSL
>> default: // UNKNOW
>SERVER
>> type
>> $extra = '';
>> break;
>> }
>>
>> In the default case change to $extra = '/imap/novalidate-cert';. For pop3
>change
>> to $extra = '/pop3/novalidate-cert'; and for pop3s change to $extra
>> = '/pop3/ssl/novalidate-cert';.
>> Warning! Adding this to a system other than RH 73 will break things.
>>
>> BTW, this is Anlges code, for reasons I'm not going to discuss or argue
>about he is
>> taking his work on the email app on his own tangent and started a site at
>> http://www.anglemail.com/. Anglemail is a drop in replacement for the
>email app
>> in .14. May also work in HEAD cvs.
>>
>> Joel Webb (address@hidden) wrote*:
>> >
>> >Redhat 7.3 with PHPGW 0.9-14 latest CVS with Davids patch from yesterday.
>>
>>
>> _______________________________________________
>> Phpgroupware-developers mailing list
>> address@hidden
>> http://mail.gnu.org/mailman/listinfo/phpgroupware-developers
>>
>
>
>_______________________________________________
>Phpgroupware-developers mailing list
>address@hidden
>http://mail.gnu.org/mailman/listinfo/phpgroupware-developers
>
- Re: [Phpgroupware-developers] 0.9.14 Mail Bug??, (continued)
Re: [Phpgroupware-developers] 0.9.14 Mail Bug??, Chris Weiss, 2002/05/22
Re: [Phpgroupware-developers] 0.9.14 Mail Bug??, Chris Weiss, 2002/05/22
Re: [Phpgroupware-developers] 0.9.14 Mail Bug??,
Chris Weiss <=