<html> <head><title>Configure PHP</title></head> <body> <center><h2>Configure PHP</h2></center> <blockquote> IlohaMail should work with the default configuration of PHP, but here are some relevant options. All of these can be changed in the php.ini file. <p><table border=1> <tr> <td><b>Directive</b></td> <td><b>Value</b></td> <td><b>Description</b></td> </tr> <tr> <td><tt>short_open_tag</tt></td> <td>1</td> <td>Required</td> </tr> <tr> <td><tt>file_uploads</tt></td> <td>1</td> <td>Required for uploading attachments</td> </tr> <tr> <td><tt>post_max_size</tt></td> <td><i>size</i></td> <td>This will also affect the maximum size of attachments (see below).</td> </tr> <tr> <td><tt>upload_max_filesize</tt></td> <td><i>size</i></td> <td>Maximum size of uploaded attachments. Should be same as <tt>post_max_size</tt></td> </tr> </table> </blockquote> </body> </html>