diff options
| author | Tristan Zur <tzur@ccwn.org> | 2012-06-11 18:25:19 +0200 |
|---|---|---|
| committer | Tristan Zur <tzur@ccwn.org> | 2012-06-11 18:25:19 +0200 |
| commit | 8f7b134e5a5e8ad43e7dd2f23f7120655bf5aa2d (patch) | |
| tree | 0329a4a9b1d7e336beda8f9ad88067bb9b13e505 /protected/config | |
| parent | e9e241011e2c390b0e2d88e330ed5fa770369a8d (diff) | |
Neue Erweiterung zum eMail-Versand hinzugefügt
Diffstat (limited to 'protected/config')
| -rw-r--r-- | protected/config/maincfg.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/protected/config/maincfg.php b/protected/config/maincfg.php index c3dd6b3..124cd3c 100644 --- a/protected/config/maincfg.php +++ b/protected/config/maincfg.php @@ -20,16 +20,17 @@ return array( 'application.components.*', 'application.extensions.egmap.*', 'application.modules.auditTrail.models.AuditTrail', + 'application.extensions.yii-mail.YiiMailMessage' ), 'modules'=>array( // uncomment the following to enable the Gii tool - 'gii'=>array( + /*'gii'=>array( 'class'=>'system.gii.GiiModule', 'password'=>'astafGen', // If removed, Gii defaults to localhost only. Edit carefully to taste. 'ipFilters'=>array('127.0.0.1','::1'), - ), + ),*/ 'auditTrail'=>array( 'userClass' => 'User', // the class name for the user object 'userIdColumn' => 'id', // the column name of the primary key for the user @@ -49,6 +50,13 @@ return array( 'simpleImage'=>array( 'class' => 'application.extensions.SimpleImage.CSimpleImage', ), + 'mail' => array(
+ 'class' => 'application.extensions.yii-mail.YiiMail',
+ 'transportType' => 'php',
+ 'viewPath' => 'application.views.mail',
+ 'logging' => true,
+ 'dryRun' => true
+ ), // uncomment the following to enable URLs in path-format /*'urlManager'=>array( |
