Upon installation of the -dev module, I did receive the error about port 25 not being open. No big deal, but then realized that I was unable to get to the error log. Receiving an error.

A little research found a similar issue in another module - http://drupal.org/node/1492898

I changed like 67 in email_verify.install from

watchdog('email_verify', $message, WATCHDOG_WARNING);

to

watchdog('email_verify', array(), $message, WATCHDOG_WARNING);

and had to truncate the watchdog table and all was resolved.

Comments

peterx’s picture

Assigned: Unassigned » peterx

Watchdog format is watchdog('email_verify', $message, array(), WATCHDOG_WARNING);
I fixed several and committed the change to git.

oadaeh’s picture

Status: Active » Fixed

Marking as fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

oadaeh’s picture

Assigned: peterx » Unassigned
Issue summary: View changes