/[drupal]/contributions/modules/returnpath/returnpath.install
ViewVC logotype

Contents of /contributions/modules/returnpath/returnpath.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Fri Aug 29 08:41:21 2008 UTC (14 months, 4 weeks ago) by deciphered
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-6--1
Changes since 1.1: +6 -1 lines
File MIME type: text/x-php
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