Author Topic: SOLVED: $rcmail_config['username_domain']  (Read 11632 times)

Offline astrosmf

  • Jr. Member
  • **
  • Posts: 16
SOLVED: $rcmail_config['username_domain']
« on: August 20, 2008, 06:12:51 PM »
when you setup an email account with my host it tacks on the domain at the end...

Code: [Select]
example+domain.com

so when I was going through the installation i told it to add "+domain.com" after every username... this is the code it created in main.inc.php

// Automatically add this domain to user names for login
// Only for IMAP servers that require full e-mail addresses for login
// Specify an array with 'host' => 'domain' values to support multiple hosts
$rcmail_config['username_domain'] = '+domain.com';


well I am not able to login, so I checked the errors log and it is adding a '@' incorrectly...

Code: [Select]
IMAP Error: Authentication for test@+domain.com failed (LOGIN): "a001 NO Login failed." in  on line 0

how can i get it to stop automatically placing the '@'

THANKS!!!!

Offline astrosmf

  • Jr. Member
  • **
  • Posts: 16
SOLVED: $rcmail_config['username_domain']
« Reply #1 on: August 20, 2008, 06:14:10 PM »
i took out the '+' and it worked perfectly