Created
May 10, 2013 14:38
-
-
Save darookee/5554804 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php return array ( | |
'db' => | |
array ( | |
'username' => 'root', | |
'password' => 'root', | |
'host' => 'localhost', | |
'port' => '3306', | |
'dbname' => 'shopware', | |
), | |
'mail' => array( | |
'type' => 'file', | |
'path' => dirname(__FILE__).'\tmp_mails', | |
'callback' => create_function('$transport', 'return | |
"ShopwareMail_".sha1($transport->body) . "_". str_replace("a", "[a]",$transport->recipients).".eml"; | |
') | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment