Hello,

I am getting a WSOD on /admin/config after installing mailsystem-7.x-2.34. The culprit seems to be a call to an undefined function in the .install file:

Fatal error: Call to undefined function mailsystem_read_settings() in /sites/all/modules/contrib/mailsystem/mailsystem.install on line 13

I grepped through all of the module files, and couldn't find a similar function. For now, I just replaced

$settings = mailsystem_read_settings();

with

$settings = array();

Comments

nyleve101’s picture

I'm also experiencing this issue in the latest 7.234 dev. Is there a way to resolve this?

N1ghteyes’s picture

Same issue for me too...

nironan’s picture

Just ran into this. I had been experimenting with version 7.x-3.dev earlier.. when I switched back to version 7.x-2.dev, the error appeared.

Turned out that the mailsystem.install file is missing from 7.x-2.dev; it was added in the 3.x branch. The install file was a leftover from a dirty rebuild of the module.

Hence, you can safely ignore the mailsystem_update_7300 update if you are using version 7.x-2.x (removing the mailsystem.install file). Or, even better, uninstall the module and do a clean install.