| 56 | * Thoroughly research testlink's user documentation |
| 57 | * You can download .pdf document from http://www.teamst.org/index.php?option=com_content&task=view&id=11&Itemid=32 |
| 58 | * In the document there are instructions and examples of how to set up SMTP server. |
| 59 | * The documentation of testlink 1.7 is more detailed and suitable for us than the documentation of testlink 1.8, because we are using testlink 1.7.4. |
| 60 | * Install SMTP server - postfix |
| 61 | * Integrate SMTP server and testlink editing sophie:/home/scs/testlink/custom_config.inc.php, i.e: |
| 62 | {{{ |
| 63 | $g_tl_admin_email = 'pacitu@gmail.com'; |
| 64 | $g_from_email = 'testlink@sophie2.org'; |
| 65 | $g_return_path_email = 'no_replay@sophie2.org'; |
| 66 | $g_mail_priority = 5; |
| 67 | $g_smtp_host = 'localhost'; |
| 68 | }}} |