I am new to using round cube and i would like to know how i can change the words on my login page at mail.facesplash.net where it says Login i would like to change what that says how do i do it
thanks
and i would also like to know if there is some way where i don't have to type my whole email in it just the alias of my email like
[email protected] where i just can type in admin
You could create a skin extension to modify the login page https://github.com/roundcube/roundcubemail/wiki/Skins#extending-skins
If you set the username_domain option in the Roundcube config you wouldn't have to type the domain when logging in.
// 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
// Supported replacement variables:
// %h - user's IMAP hostname
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %z - IMAP domain (IMAP hostname without the first part)
// For example %n = mail.domain.tld, %t = domain.tld
$config['username_domain'] = '';