new version UEBIMAIU

I did the following changes to the inc/config.php

line 42
$temporary_directory = "/tmp/";

line 139
$mail_server_type = "ONE-FOR-ALL";

line 185
$default_mail_server = "localhost";

line 186
$one_for_all_login_type = "%user%";

and

nano inc/config.languages.php

line 10
$default_language = 'en_UK';

remove INSTALL dir

then it works, but their is an issue that with the main email account for DA accounts the login has to be username@localhost not just username, if I change $one_for_all_login_type = "%user%"; to $one_for_all_login_type = "%user%@%domain%"; then that account cant login at all. I havent found a workaround.
 
Well when I had debug enabled, the vm-pop3d was saying invalid syntax back to the webmail when attempting to login as the master account. The same settings work fine on 2.7.2 tho so this might be something we need to bug the UEBIMAIU author about. Incidently I have temporarily reverted to 2.7.2 again until I got it working.
 
uebimieu problem with login solved!!!

Hi ,

I download new uebi with extra skins from here Uebi 2.7.8
I solved the problem with login with the following code :)

in inc/inc.php go to line 82 and put this

before
Code:
                if(ereg("(.*)@(.*)",$f_email,$regs)) {
                        $f_user = $regs[1];
                        $domain = $regs[2];
                        if($one_for_all_login_type != "") $f_user = eregi_replace("%user%",$f_user,eregi_replace("%domain%"
,$domain,$one_for_all_login_type));
                }

after
Code:
                if(ereg("(.*)@(.*)",$f_email,$regs)) {
                        $f_user = $regs[1];
                        $domain = $regs[2];
                        if($one_for_all_login_type != "") $f_user = eregi_replace("%user%",$f_user,eregi_replace("%domain%"
,$domain,$one_for_all_login_type));
                }
                else{
                        $one_for_all_login_type = "%user%";
                        $f_user = $f_email;
                }

My config file is server type is ONE-FOR-ALL
Code:
$default_mail_server    = "localhost";
$one_for_all_login_type = "%user%@%domain%";
$default_protocol               = "pop3";
$default_port                   = "110";
$default_folder_prefix  = "";

Thats all!! I am waiting for resuts.


:)
 
Re: uebimieu problem with login solved!!!

klaus said:
Thats all!! I am waiting for resuts.
Are the results that it works properly?

Please let us know if you've noticed any other problems/issues.

Once we're sure it works we can make the changes and repackage UebiMiau for DA and set up a download for it.

Jeff
 
Yes it is working fine, no problems detected, i have test it with many accounts and there is no problem.

:)

I believe that more DA users should give a try, maybe there is an error/bug that i have not found on it yet.

If i notice something strange i'll post it.
 
Is there anything compelling about the new version of UEBIMAIU?
 
I create a package with the pacth applied and some extra skins.
Download Uebi here.

Happy Miau ;)
 
How is this updated? Do we just decompress over the old folder?
 
Code:
cd /var/www/html
wget [url]www.klaus.gr/webmail-2.7.8.tar.gz[/url]
tar xzvf webmail-2.7.8.tar.gz
cp -rp webmail/tmp webmail-2.7.8/
mv webmail webmail.old
mv webmail-2.7.8 webmail

Check webmail/inc/config.php

Thats all.
 
Why not post package with the modified config?

Line 82 in the confiug says:

# Language & themes settings

Yjos doesn't seem where the added code would go. Ot am I wrong?
 
got it working.

How do you set default language and default theme?
 
The pachage contain the pached version of uebi with extra skins.

I sain check inc/config.php if everything is ok and fits you requiremets.
Also set your deufault language and skin in inc/config.languages.php

Yjos doesn't seem where the added code would go. Ot am I wrong?
Code is already added in inc/inc.php


How do you set default language and default theme?
Change the config in inc/config.languages.php

The only file you need to check is inc/config.languages.php and inc/conf.php
 
Thanks Klaus. If this webmail had a spell check and import/export of address books, it would actually be very good and simple.
 
We have also UEBIMAIU updated, but
when we a email sent and we look in de sent folder the email you sent has no subject and no to.

I have looked in de tmp map of UEBIMAIU by the email I sent and there are no to and subject at this file.

What is the problem about this?

Thanks so much!
 
It used de php mail functie.
We set them to smtp.
Result:
[email protected] can send mail
but
test can't send mail

Maillog:
login authenticator failed for localhost (xx.xx.xx.xx) [127.0.0.1]: 535 Incorrect authentication data (set_id=test)
 
Back
Top