[horde] Problems whit the horde access

Jan Schneider jan at horde.org
Wed Dec 11 13:58:45 UTC 2013


Zitat von David González <david.gonzalez at san.com.py>:

> Hi everyone!!!
>
> I have a server Centos 6.x 32bits. where I want my users to install horde
> as webmail
>
> I follow the instruction for install horde on this page:
> http://www.horde.org/apps/webmail/docs/INSTALL#finishing-installation
>
> All be fine, my web directory is /var/www/webmail
>
> My Apache Alias configuration is: webmail.conf
> Alias /mailweb  /var/www/webmail
>
> <Directory /var/www/webmail>
>     AddType application/x-httpd-php .php
>     DirectoryIndex index.php
>     Order Allow,Deny
>     Allow from all
>
>     Options +FollowSymLinks
>
>     # horde.org's recommended PHP settings:
>     php_admin_flag safe_mode off
>     php_admin_flag magic_quotes_runtime off
>     php_flag session.use_trans_sid off
>     php_flag session.auto_start off
>     php_admin_flag file_uploads on
>     php_value session.gc_divisor 10000
>     php_value session.gc_probability 1
>     # Optional - required for weather block in Horde to function
>     php_admin_flag allow_url_fopen on
>
>     # If horde dies while trying to handle large email file attachments,
>     #  you are probably hitting PHP's memory limit.  Raise that limit here,
>     #  but use caution
>     # Set to your preference - memory_limit should be at least 32M
>     #  and be greater than the value set for post_max_size
>     #php_value memory_limit 32M
>     #php_value post_max_size 20M
>     #php_value upload_max_filesize 10M
>     # /usr/share/pear is needed for PEAR. /var/www/html/horde is needed for
> Horde itself
>     # TODO: Set an appropriate include_path, too. Might even increase speed
> a bit.
>     php_admin_value open_basedir
> "/var/www/webmail:/var/www/webmail/config:/usr/share/pear:/tmp"
>     php_admin_flag register_globals off
> </Directory>
>
> <Directory /var/www/webmail/config>
>     Order Deny,Allow
>     Deny from all
> </Directory>
>
> # Deny access to files that are not served directly by the webserver
> <DirectoryMatch
> "^/var/www/webmail/(.*/)?(config|lib|locale|po|scripts|templates)/(.*)?">
>     Order Deny,Allow
>     Deny from all
> </DirectoryMatch>
>
> # Deny access to the test.php files except from localhost
> <LocationMatch "^/webmail/(.*/)?test.php">
>     Order Deny,Allow
>     Deny from all
>     Allow from 127.0.0.1
> </LocationMatch>
>
> In my horde config/conf.php
> <?php
> /* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
> // $Id: 56a06c9745abf383eb7381c3efc537045bf0ba0c $
> $conf['vhosts'] = false;
> $conf['debug_level'] = E_ALL & ~E_NOTICE;
> $conf['max_exec_time'] = 0;
> $conf['compress_pages'] = true;
> $conf['secret_key'] = '52a1f1c2-cff4-4c71-941c-261cf97b6bfd';
> $conf['umask'] = 077;
> $conf['testdisable'] = false;
> $conf['use_ssl'] = 2;
> $conf['server']['name'] = $_SERVER['SERVER_NAME'];
> $conf['urls']['token_lifetime'] = 30;
> $conf['urls']['hmac_lifetime'] = 30;
> $conf['urls']['pretty'] = false;
> $conf['safe_ips'] = array();
> $conf['session']['name'] = 'Horde';
> $conf['session']['use_only_cookies'] = true;
> $conf['session']['timeout'] = 0;
> $conf['session']['cache_limiter'] = 'nocache';
> $conf['session']['max_time'] = 72000;
> $conf['cookie']['domain'] = $_SERVER['SERVER_NAME'];
> $conf['cookie']['path'] = '/mailweb';
> $conf['sql']['username'] = 'userdb';
> $conf['sql']['password'] = 'passqwddb';
> $conf['sql']['hostspec'] = 'localhost';
> $conf['sql']['port'] = 3306;
> $conf['sql']['protocol'] = 'tcp';
> $conf['sql']['database'] = 'mailweb';
> $conf['sql']['charset'] = 'utf-8';
> $conf['sql']['ssl'] = true;
> $conf['sql']['splitread'] = false;
> $conf['sql']['phptype'] = 'mysql';
> $conf['nosql']['phptype'] = false;
> $conf['ldap']['useldap'] = false;
> $conf['auth']['admins'] = array('dgr');
> $conf['auth']['checkip'] = true;
> $conf['auth']['checkbrowser'] = true;
> $conf['auth']['resetpassword'] = true;
> $conf['auth']['alternate_login'] = false;
> $conf['auth']['redirect_on_logout'] = false;
> $conf['auth']['list_users'] = 'list';
> $conf['auth']['params']['app'] = 'imp';
> $conf['auth']['driver'] = 'application';
> $conf['auth']['params']['count_bad_logins'] = false;
> $conf['auth']['params']['login_block'] = false;
> $conf['auth']['params']['login_block_count'] = 5;
> $conf['auth']['params']['login_block_time'] = 5;
> $conf['signup']['allow'] = false;
> $conf['log']['priority'] = 'INFO';
> $conf['log']['ident'] = 'HORDE';
> $conf['log']['name'] = LOG_USER;
> $conf['log']['type'] = 'syslog';
> $conf['log']['enabled'] = true;
> $conf['log_accesskeys'] = false;
> $conf['prefs']['params']['driverconfig'] = 'horde';
> $conf['prefs']['driver'] = 'Sql';
> $conf['alarms']['params']['driverconfig'] = 'horde';
> $conf['alarms']['params']['ttl'] = 300;
> $conf['alarms']['driver'] = 'Sql';
> $conf['group']['driverconfig'] = 'horde';
> $conf['group']['driver'] = 'Sql';
> $conf['perms']['driverconfig'] = 'horde';
> $conf['perms']['driver'] = 'Sql';
> $conf['share']['no_sharing'] = false;
> $conf['share']['auto_create'] = true;
> $conf['share']['world'] = true;
> $conf['share']['any_group'] = false;
> $conf['share']['hidden'] = false;
> $conf['share']['cache'] = false;
> $conf['share']['driver'] = 'Sqlng';
> $conf['cache']['default_lifetime'] = 86400;
> $conf['cache']['params']['sub'] = 0;
> $conf['cache']['driver'] = 'File';
> $conf['cache']['use_memorycache'] = '';
> $conf['cachecssparams']['url_version_param'] = true;
> $conf['cachecss'] = false;
> $conf['cachejsparams']['url_version_param'] = true;
> $conf['cachejs'] = false;
> $conf['cachethemes'] = false;
> $conf['lock']['params']['driverconfig'] = 'horde';
> $conf['lock']['driver'] = 'Sql';
> $conf['token']['params']['driverconfig'] = 'horde';
> $conf['token']['driver'] = 'Sql';
> $conf['davstorage']['params']['driverconfig'] = 'horde';
> $conf['davstorage']['driver'] = 'Sql';
> $conf['mailer']['params']['sendmail_path'] = '/usr/lib/sendmail';
> $conf['mailer']['params']['sendmail_args'] = '-oi';
> $conf['mailer']['type'] = 'sendmail';
> $conf['mailformat']['brokenrfc2231'] = false;
> $conf['vfs']['params']['driverconfig'] = 'horde';
> $conf['vfs']['type'] = 'Sql';
> $conf['sessionhandler']['type'] = 'Builtin';
> $conf['sessionhandler']['hashtable'] = false;
> $conf['spell']['driver'] = '';
> $conf['gnupg']['keyserver'] = array('pool.sks-keyservers.net');
> $conf['gnupg']['timeout'] = 10;
> $conf['nobase64_img'] = false;
> $conf['image']['driver'] = false;
> $conf['exif']['driver'] = 'Bundled';
> $conf['timezone']['location'] = 'ftp://ftp.iana.org/tz/tzdata-latest.tar.gz
> ';
> $conf['problems']['email'] = 'dgr at centos.san.com.py';
> $conf['problems']['maildomain'] = 'centos.san.com.py';
> $conf['problems']['tickets'] = false;
> $conf['problems']['attachments'] = true;
> $conf['menu']['links']['help'] = 'all';
> $conf['menu']['links']['prefs'] = 'authenticated';
> $conf['menu']['links']['problem'] = 'all';
> $conf['menu']['links']['login'] = 'all';
> $conf['menu']['links']['logout'] = 'authenticated';
> $conf['portal']['fixed_blocks'] = array();
> $conf['accounts']['driver'] = 'null';
> $conf['user']['verify_from_addr'] = false;
> $conf['user']['select_view'] = true;
> $conf['facebook']['enabled'] = false;
> $conf['twitter']['enabled'] = false;
> $conf['urlshortener'] = false;
> $conf['weather']['provider'] = false;
> $conf['imap']['enabled'] = true;
> $conf['imsp']['enabled'] = true;
> $conf['kolab']['enabled'] = false;
> $conf['hashtable']['driver'] = 'none';
> $conf['activesync']['enabled'] = false;
> /* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */
>
> In the webmail-install y put the opcion mysql database for user, and this
> create good.
>
> I tried to get the url https://centos.san.com.py/mailweb and this redirect
> to https://centos.san.com.py/login.php and this url no exist and get error
> Not Found in Apache server. But i try to
> https://centos.san.com.py/mailweb/test.php and i can see this page.
>
> I search in the web some solution for avoid thsi redirection, but this
> error is not comment in the web.
>
> I need some manual o faq of the horde by solution to my problem.
>
> Thank to all,
> Regards,
> David
>
> P.D: Sorry to my bad english

You need to set $app_webroot in registry.local.php. See the docs in  
config/registry.php.
-- 
Jan Schneider
The Horde Project
http://www.horde.org/
https://www.facebook.com/hordeproject



More information about the horde mailing list