Header missing
widiotter - June 11, 2008 - 15:10
| Project: | Ezmlm |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | hutch |
| Status: | closed |
Jump to:
Description
I've installed the modul and everything is working good, bit when I try to subscribe, after clicking subscribe, der ist the message «custom "From:" header missing in C:\Inetpub\wwwroot\diehirtin\modules\ezmlm\ezmlm.module on line 220.»
What have I got to change/do/add in the code?
Regards
Reto

#1
Judging from the path in the error you reported this is running under Windows, which handles mail differently to *nix. See the php manual for details, under 'mail functions'
There are a couple of ways of dealing with this.
Edit your php.ini and set
sendmail_from = me@example.com
to a valid email address. Don't forget to remove the ';' from the beginning of the line. You will need to restart Apache.
If you do not have access to your php.ini you could try adding it to your .htaccess file in drupal root:
In the section for php5 add
php_value sendmail_from me@example.com
No need to restart Apache
I haven't tested this as I do not have any Windows machines but let the list know how to do it when you find out ;-)
Hope this helps.
#2
No answer