XMailforum is a readonly knowledge archive now.

Registering as a new user or answering posts is not possible anymore.

Might the force be with you, to find here what you are looking for.

2019-09-20 - hschneider, Admin

Cookie Disclaimer: This forum uses only essential, anonymous session cookies (xmailforum*), nothing to be scared of.

XMail Forum -> Better than Uebimiau

Reply to this topicStart new topic

> Better than Uebimiau
aju_rathod
Posted: Jul 26 2006, 03:10 PM
Quote Post


Advanced Member
****

Group: Members
Posts: 137
Member No.: 1858
Joined: 17-December 05



Hi,

I am using Uebimiau webmail for web frontend on Linux is there any other webmail frontend available other than this?

Regards,
Ajay Rathod.
PMEmail Poster
Top
ndoeberlein
Posted: Jul 26 2006, 03:14 PM
Quote Post


Wizard
*********

Group: Members
Posts: 419
Member No.: 997
Joined: 22-March 04



http://www.telaen.org/

It's based on Uebimiau, but it's being actively worked on. Take a look and it should be a relatively seemless conversion.

There's also Ilohamail.

http://www.ilohamail.org
PM
Top
aju_rathod
Posted: Sep 28 2006, 07:25 PM
Quote Post


Advanced Member
****

Group: Members
Posts: 137
Member No.: 1858
Joined: 17-December 05



HI ,

I have configured IlohaMail for as Webmail for my Xmail server but when i login to the Ilohamail with username and password of Xmail server it is not accepting the same. Following error occurs.

ERR Invalid auth or access denied

Does Ilohamail allows Xmail users to login?

Regards,
Ajay Rathod.
PMEmail Poster
Top
ndoeberlein
Posted: Sep 29 2006, 04:22 AM
Quote Post


Wizard
*********

Group: Members
Posts: 419
Member No.: 997
Joined: 22-March 04



Can you verify your XMail server is running with POP3 client or another web app?

Ilohamail is one of the easiest to use. In the default screen, just put in username, password, XMailServer IP address, POP3, and language.


PM
Top
aju_rathod
Posted: Sep 29 2006, 07:16 AM
Quote Post


Advanced Member
****

Group: Members
Posts: 137
Member No.: 1858
Joined: 17-December 05



Hi,

My Xmail server works fine with other mail client Outlook Express and Telaen webmail but when i give same username and password in Ilohmail it is denying the access. following is my conf.php which also shows the User dir path.

<?php
/********************************************************
conf/conf.php

PURPOSE:
General settings and configuration.

********************************************************/


/******* FOR OPTIMAL PERFORMANCE *******
As you can see this file contains a lot of comments.
For optimal performance, remove all comments and only
leave directives you need and use.
*/


/***************** BACKEND ****************
IlohaMail supports multiple backends, namely, file
and/or database based. If a database backend is used,
a file-based backend can still be used to certain
features.
*/
$backend = "mysql";

// $DATA_DIR : path to data directory, relative to source directory
// REQUIRED: Always
$DATA_DIR = '/var/www/IlohaMail/data';

// $UPLOAD_DIR path to uploads dir
// MUST HAVE TRAILING '/'
// REQUIRED: Always
$UPLOAD_DIR = $DATA_DIR.'/uploads/';

// $CACHE_DIR path to cache dir
// MUST HAVE TRAILING '/'
// REQUIRED: Always (folder it self does not need to exist)
$CACHE_DIR = $DATA_DIR.'/cache/';

// $USER_DIR path to users dir
// MUST HAVE TRAILING'/'
// REQUIRED: For FS-backend
$USER_DIR = $DATA_DIR.'/var/MailRoot/domains/synchronresearch/';

// $SESSION_DIR path to sessions dir
// MUST HAVE TRAILING '/'
// REQUIRED: For FS-backend
$SESSION_DIR = $DATA_DIR.'/sessions/';


/********************* LOG *****************
The log feature in IlohaMail logs all log in/out
attempts, and works with both file-base and DB-based
backends. The log feature is deactivated by default.
*/

// Set the following value to true to active logging
$log_active = false;

// Log backend
// The log backend defaults to $backend, but falls
// back to "FS" if $log_file (below) is set.
// In other words, the options are:
// "": default
// "syslog" : log to syslog
$log_backend = "";

// Log file path (file-based backend only)
// Use relative path to source file, or absolute path
// PHP must have write privileges to the file and/or
// parent directory.
$log_file = "";

// Template entry (file-based backend only)
// The log feature will take this line, and replace the
// keywords with appropriate information to enter in the
// log. Use any combination of the following keywords:
// "date" : date and time
// "ip" : client IP address
// "acct" : if available, email account and server
// "comment" : Error messages or comments
$log_template = "[date] ip:acct - action (comment)";


/**************** Spam Prevention ************
This feature is not for blocking incoming spam, but
for preventing possible use of IlohaMail for spamming
purposes.

This will involve a three-level approach.
Level 1: Restrict number of recepients per email
Level 2: Restrict number of recepients per session
Level 3: Set minimum interval between sending

In a restrictive setting, a spammer may be forced
to send to 10 people at a time, once every minute
and log out and log back in after sending 5 messages.
This should effectively discourage manual and automated
spamming.
*/

// Maximum number of recepients per message.
// Will count To,CC,BCC fields. More specifically
// it will count the number of '@' symbols.
$max_rcpt_message = 50;

// Maximum number of recepients per session.
// Note: This is not the number of messages,
// but the total number of recepients.
$max_rcpt_session = 100;

// Minimum interval between send operations,
// in seconds.
$min_send_interval = 15;


/**************** spam reporting *************
Specify an email address, if one is available,
where users can report spam. This will add a
link in the read message window allowing users
to report spam in two simpl clicks.

Leave the string empty to disable this feature.
*/

$report_spam_to="";


/***************** Auth Mode ***************
Specify default IMAP authentication method.
Choices are:
"plain" : Always use plain text
Greatest compatibility

"auth" : Try encrypted authenctication
(CRAM-MD5), first, then plain

"check" : Check the server's capabilities
for CRAM-MD5, and use appropriate
auth method.
"apop" : For POP3 only
"none" : For SMTP only. Use if SMTP server
does not require authentication.
*/

$AUTH_MODE["imap"] = "plain";
$AUTH_MODE["pop3"] = "plain";
$AUTH_MODE["smtp"] = "";


/***************** Time Limit ***************
Set maximum execution time. Opening mailboxes
with even thousands of messages shouldn't have
problems, but a large POP account may time out.

Set value to 0 for unlimited timeout.
*/

$MAX_EXEC_TIME = 60;


/***************** Trust User Address ********
This directive specifies whether to use the
user specified email address in the From header.

When on (set to true or 1):
User specified address is used in From header
Authenticated email address used for Sender header
When off (set to false or 0):
Authenticated email address used for From header
User specified address used in Reply-To header

Note:
The 'init_from_address' option needs to be configured
in conf/defaults.generic.inc (or defaults.host.inc)
if server host name is not same as email domain name
e.g.
if server is imap.domain.com but email address
is user@domain.com

*/

$TRUST_USER_ADDRESS = 1;


/***************** SMTP Server **************
SMTP server to use. Default is "localhost",
however any SMTP server that'll allow relaying
from your webmail server can be used.
Authenticated SMTP is currently not supported.

Leave string empty to use PHP's mail() function.
(Might work more reliably.)
*/

$SMTP_SERVER = "192.168.0.11";


/***************** SMTP Type **************
The SMTP server type. This is used to
accomodate slight differences between SMTP
servers.

This directive only takes effect if $SMTP_SERVER
is specified.

Supported values: "sendmail", "courier"

NOTE: if you're not sure, just use "sendmail"
*/

$SMTP_TYPE = "sendmail";


/***************** SMTP User/Pass **************
If you have a password protected SMTP server,
and would like all webmail users to send even
if they can't directly authenticate against
your SMTP server themselves, use the directives
below to specify which user to authenticate as.
If empty, users' login and passwords will be used
instead.

ONLY FOR AUTH SMTP
*/
$SMTP_USER = "";
$SMTP_PASSWORD = "";


/***************** Tag-Lines *****************
TAG-LINES are blurbs that can be attached at the
end of messages sent through IlohaMail.
If you do not want tag-lines attached, leave the
string empty. If you want taglines on some users
but not on others, set the $TAG_LEVEL to a number
greater than 0, and change the user's userLevel
in the backend (only works with database backend).

Example:
$TAG_LINE = "---------------\n";
$TAG_LINE .= "This message was sent using IlohaMail";
*/

$TAG_LINE = "";

$TAG_LEVEL = 0;


/***************** Maximum Session *****************
MAX_SESSION_TIME specifies the maximum length of
time users can be logged in without having to log
out. After the MAX_SESSION_TIME is over, users
will be forced to log out and log back in.

VALUE MUST BE SECONDS.

e.g.
$MAX_SESSION_TIME = (60 * 60 * 24); // 24 hours
$MAX_SESSION_TIME = 3600; // 1 hour

*/

$MAX_SESSION_TIME = (60 * 60 * 24);


/***************** Stay Logged In *****************
STAY_LOGGED_IN overrides the previous setting
and allows users to be logged in indefinitely.

If enabled (set to 1), $MAX_SESSION_TIME becomes
the length of time a user can be inactive before
getting logged out.
*/

$STAY_LOGGED_IN = 1;


/***************** POP3 QUOTA *****************
POP3 disk quotas must be hard codded, since
POP3 does not provide the means to retreive
a user's quota.

VALUES ARE IN KILOBYTES

Quotas are set for each host, even if there's
only one.

e.g.

$POP_QUOTA["losers.domain.com"] = 5000;
$POP_QUOTA["winners.domain.com"] = 20000;
*/

//$POP_QUOTA["host"] = 0;


/***************** REFRESH INTERVALS ***********
Users can configure the radar (indicator in top
left frame) and folder list to reload periodically.

Since a large installation with dozens or hundreds
of users whose refresh is set to mere seconds
could cause excessive traffic, you can set the
minimum intervals here.

As reference, if there are 100 users logged in
and they all have both refresh values set to 5
seconds, they will generate 24 requests per minute
each. Collectively, they will generate 2400 page
views per minute, on top of the usual more resource
intensive calls. Do the math and set the values
as appropriate for your environment.
*/

$MIN_FOLDERLIST_REFRESH = 10;
$MIN_RADAR_REFRESH = 10;


/***************** DISABLE ******************
The following directives can be used to disable
some of the "extra" features.
*/

$DISABLE_CALENDAR = 0;
$DISABLE_BOOKMARKS = 0;


/***************** MAX_UPLOAD_SIZE ***********
Maximum attachment upload size. If set to 0, it
matches the "upload_max_filesize" directive in php.ini.

Value must be equal to or less than
"upload_max_filesize" and "post_max_size" directives
set in php.ini.
*/
$MAX_UPLOAD_SIZE = 0;


/***************** SPELL CHECK **************
IlohaMail uses aspell (http://aspell.net/) but
does NOT use PHP's aspell/pspell module. All you
need is athe aspell executable, and appropriate
dictionaries.

ONLY WORKS ON UNIX, DISABLED BY DEFAULT
UNCOMMENT TO ENABLE:

$ASPELL_PATH : path to aspell binary

specify supported languages with:
$DICTIONARIES[<lang>] = <name>

*/

//path to aspell binary
//$ASPELL_PATH = "/usr/bin/aspell";

//supported languages
//$DICTIONARIES["en"] = "English";


/***************** IGNORE FOLDERS **********
Specify regular expression rules of folders
to ignore. For example:

$IGNORE_FOLDERS["mail.domain.com"] = "^Public Folders/";

ignores all folders inside "Public Folders" including the
folder itself for the host "mail.domain.com".
*/
//$IGNORE_FOLDERS[<host>] = <regexp>;



/***************** GPG *********************
---EXPERIMENTAL---
A complete web interface for GPG. Supports:
-Key generation
-Import public keys
-Encrypt on send
-Decrypt on receive
This feature works regardless of whether the user
has a shell account on the webmail server or not.
---EXPERIMENTAL---
*/

$GPG_ENABLE=0;
$GPG_PATH = "/usr/bin/gpg";
$GPG_HOME_STR = "../data/gpg/%u.%h";
//$GPG_HOME_STR = "/home/%u";


/**** WARNING ***
Make sure there are NO BLANK LINES after
the '?>' below!! Blank lines will cause
all kinds of problems!!
*******************/
?>


But srill it is nt allowing to login rest everything is fine with Ilohamail. What could be the reason?

Regards,
Ajay Rathod
PMEmail Poster
Top
0 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
0 Members:
« Next Oldest | Webmail Add-ons | Next Newest »

Reply to this topicStart new topic