Closed limor1 closed 8 years ago
@limor1 say connection.debug = 4
after https://github.com/OCA/server-tools/blob/8.0/fetchmail_attach_from_folder/model/fetchmail_server.py#L70 and post the output. This logs to stderr, so you'll have to run your server in the foreground
Hi, i got the same problem with following configuration:
The second part works well. The first part not, because of this error above.
My very fast but ugly solution in fetchmail_server(skip connection if no folders):
#FROM
connection = this.connect()
for folder in this.folder_ids.filtered('active'):
this.handle_folder(connection, folder)
connection.close()
#TO
if this.folder_ids.filtered('active'):
connection = this.connect()
for folder in this.folder_ids.filtered('active'):
this.handle_folder(connection, folder)
connection.close()
I'm getting this log error every time fetchmail is run in crontab or manually
There are two folder rules for IMAP account "Nuno":
This rule creates leads from emails showing up in folder CRM-Leads - it works as expected (although unfortunately it only catches incoming emails, not outgoing emails)
This rule is supposed to create message threads associated with customers - this doesnt seem to do anything. no mails are read :(