Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Error when deleting remote message.

Quote Reply
Error when deleting remote message.
Hi Adrian

Do you remeber when I got this error:

"A fatal error has occured:

Can't call method "header_as_string" on an undefined value at /home/dirctory/public_html/cgi-bin/directory/admin/GMail/POP3/Manager.pm line 93.

Please enable debugging in setup for more details."

Well I got it again. I don't know why I got it and I can't duplicate it. All I know is that it happen just sometimes when I delete a message off the remote server. Once I continue everything seems to go back to normal.

Just thought I'd let you know.

Regards

Stoosh
Quote Reply
Re: [Stoosh] Error when deleting remote message. In reply to
Try this, edit admin/GMail/POP3/Manager.pm, line 92 and change:
Code:
my $head = $pop->head_part($num);
to:
Code:
my $head = $pop->head_part($num) or next;

Adrian