Gossamer Forum
Quote Reply
pop again
Hi,
I already posted something similar to this. As far as I know you have to enter user@domain.com to enter your pop account at most mail-servers. As far as I understood gossamer-mail submits user and password but not user@domain.com. Now I am looking for the right place to add the @domain.com. I tried at webmail.pm but it did not work and I donīt know why. Thanks for any help.

Niko

http://www.master-productions.com
Quote Reply
Re: pop again In reply to
Hello,

The easiest way to do it would be to open admin/Webmail/POP3.pm and go to around line 73. This is in the subroutine init.
Right after the line:
foreach my $k (keys %h) { $self->{uc $k} = $h{$k}; }

Add somthing like:
$self->{USER} .= '@mydomain' if ($self->{USER});

Where mydomain is the name of the domain that you wish to add on to the end of the users name.

Cheers,

Scott



Quote Reply
Re: pop again In reply to
Hello!

Such things would be nice if they are integrated in the main Webmail.pm or main config module.

Thanks