IMAP Job Attribute Error - Excel File Download

Here is the error I am seeing.

Blockquote
Traceback (most recent call last):
File “/opt/mitto/jobs/job_imap.py”, line 58, in
sys.exit(main())
File “/opt/mitto/jobs/job_imap.py”, line 21, in main
config = JobConfig(**args.config)
File “pydantic/main.py”, line 281, in pydantic.main.BaseModel.init
File “pydantic/main.py”, line 849, in pydantic.main.validate_model
File “pydantic/fields.py”, line 523, in pydantic.fields.ModelField.validate
File “pydantic/fields.py”, line 671, in pydantic.fields.ModelField._apply_validators
File “pydantic/class_validators.py”, line 278, in pydantic.class_validators._generic_validator_cls.lambda2
File “/opt/mitto/plugin/imap/config.py”, line 52, in matching_extensions_validator
if val.startswith("."):
AttributeError: ‘list’ object has no attribute ‘startswith’

Looks like I need to update the “Matching Extensions” line but am not seeing that information on the documentation

image

Hey @Tyler what version of Mitto is this?
There was an imap job bug where the matching_extensions list could not be empty. As a temporary fix, you should be able to remove it (or comment it out).
The bug is fixed in Mitto v2.9.4.

That did it. Thanks!