Follow up - 045902351 - fixes #2754
045902351 adds a `rescue` clause
to fix a bug in which IMAP parsing errors
cause the entire email import process to fail.[0]
This bugfix contains an error:
we're still not sure why,
but the `next` inside the `rescue` clause
does not act like the `next`s outside of it
(execution of the containing `.each` block continues,
even after passing `next`).
This commit puts `next` in the right place,
so that the method will skip processing of the current message
and move onto the next one.
[0]: https://github.com/zammad/zammad/issues/2754