bugMail Notification, A mail notification for freedesktop.org-compliant system trays - Bugs: bug #19934, Mail-notification can't...

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #19934: Mail-notification can't understand: "+OK, Capability list follows"

Submitted by:  None
Submitted on:  Tue 22 May 2007 08:41:00 PM UTC  
 
Severity: 5 - BlockerStatus: Fixed
Privacy: PublicAssigned to: None
Originator Name: Originator Email: -unavailable-
Open/Closed: Closed

Tue 26 Jun 2007 12:39:16 PM UTC, comment #3:

Fixed in 4.1

Jean-Yves Lefort <jylefort>
Project Administrator
Tue 22 May 2007 10:20:54 PM UTC, comment #2:

This problem will be fixed in the next release, thanks.

Jean-Yves Lefort <jylefort>
Project Administrator
Tue 22 May 2007 09:58:05 PM UTC, comment #1:

A solution is:

If a comma follow "+OK" then it is the same thing which a space.

in file mn-pop3-mailbox, function mn_pop3_mailbox_response_new_cb:

Replace this lines

if (input[after_status] == 0 || input[after_status] == ' ')
{
response = g_new0(MNClientSessionResponse, 1);
response->type = type;
if (input[after_status] == ' ')
response->arguments = g_strdup(input + after_status + 1);
}

By this lines:

if (input[after_status] == 0 || input[after_status] == ' ' || input[after_status] == ',')
{
response = g_new0(MNClientSessionResponse, 1);
response->type = type;
if (input[after_status] == ' ')
response->arguments = g_strdup(input + after_status + 1);
if (input[after_status] == ',')
response->arguments = g_strdup(input + after_status + 2); /* +2 because a space follow the comma */
}

stephane <stca77>
Tue 22 May 2007 08:41:00 PM UTC, original submission:

Hi,

I use a pop3 mailbox at http://www.ifrance.com and for a few days, this error appears:
pop3 mailbox not dealt (impossible to interpret the answer "+OK, Capability list follows")
This is my english translation from french error message:
boite au lettre pop3 non prise en charge (impossible d'interpreter la reponse "+OK, Capability list follows")

mail-notification 3.0-5 (mandriva2007)
and
mail-notification 4.0 (build from source)

Anonymous

 

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -unavailable- added by jylefort (Posted a comment)
  • -unavailable- added by stca77 (Posted a comment)
  •  

    Please enter the title of George Orwell's famous dystopian book (it's a date):

     

     

    Follow 3 latest changes.

    Date Changed By Updated Field Previous Value => Replaced By
    Tue 26 Jun 2007 12:39:16 PM UTCjylefortStatusConfirmed=>Fixed
      Open/ClosedOpen=>Closed
    Tue 22 May 2007 10:20:54 PM UTCjylefortStatusNone=>Confirmed

    Back to the top


    Powered by Savane 3.1-cleanup1