Parent Directory
|
Revision Log
|
Revision Graph
Cleanup and minor fixes
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | */ |
| 7 | |
| 8 | function returnpath_install() { |
| 9 | $path = drupal_get_path('module', 'returnpath'); |
| 10 | variable_set('smtp_library', "{$path}/dummyfile.php"); |
| 11 | drupal_set_message(t('Return-Path mail handler installed.')); |
| 12 | } |
| 13 | |
| 14 | function returnpath_uninstall() { |
| 15 | variable_del('smtp_library'); |
| 16 | drupal_set_message(t('Return-Path mail handler removed.')); |
| 17 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |