Author Topic: [SOLVED] Roundcube Greeting?!?!  (Read 6112 times)

Offline astrosmf

  • Jr. Member
  • **
  • Posts: 16
[SOLVED] Roundcube Greeting?!?!
« on: August 21, 2008, 12:23:46 AM »
when you're logging in... the message "Welcome to RoundCube Webmail"... what directory/file is that in???  it's driving me crazy!!!
« Last Edit: August 21, 2008, 08:43:05 AM by astrosmf »

Offline rosali

  • Hero Member
  • *****
  • Posts: 2,533
Roundcube Greeting?!?!
« Reply #1 on: August 21, 2008, 01:17:46 AM »
program/localization/[language code]/labels.inc
Regards,
Rosali
__________________
MyRoundcube Project (commercial)

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,850
Roundcube Greeting?!?!
« Reply #2 on: August 21, 2008, 02:26:18 AM »
the "Welcome to" text comes from your localisation labels file as for the RoundCube Webmail bit try searching your config file for product_name
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and moreā€¦

Offline astrosmf

  • Jr. Member
  • **
  • Posts: 16
Roundcube Greeting?!?!
« Reply #3 on: August 21, 2008, 08:30:09 AM »
ok found it...

// login page
$labels['welcome']   = 'Welcome to $product';


now where is the variable $product located and stored?

thanks everyone!

Offline rosali

  • Hero Member
  • *****
  • Posts: 2,533
Roundcube Greeting?!?!
« Reply #4 on: August 21, 2008, 08:36:19 AM »
./config/main.inc.php

$rcmail_config['product_name'] = 'RoundCube Webmail';
Regards,
Rosali
__________________
MyRoundcube Project (commercial)

Offline astrosmf

  • Jr. Member
  • **
  • Posts: 16
Roundcube Greeting?!?!
« Reply #5 on: August 21, 2008, 08:42:37 AM »
Quote from: rosali;13434
./config/main.inc.php

$rcmail_config['product_name'] = 'RoundCube Webmail';


you're amazing!