Re: [SOGo] missing option to add additional imap account/error: "no mailbox selected"

2018-03-21 Thread Jason Daigo
Wow thank you. Have a nice day. 

Von meinem iPhone gesendet

> Am 21.03.2018 um 14:31 schrieb Christian Mack 
> (christian.m...@uni-konstanz.de) :
> 
> Hello
> 
> You have to uncomment options in sogo.conf, in order to make them active ;-)
> Comments are the two slashes at the beginning of the line.
> 
> SOGoMailAuxiliaryUserAccountsEnabled is therefore not active in your
> configuration.
> 
> 
> Kind regards,
> Christian Mack
> 
> Am 18.03.2018 um 21:45 schrieb Jason Daigo (m...@jasondaigo.de):
>>> 
>>> sorry if i do this wriong; never used a mailing list before; after days of 
>>> frustraion i got a sogo 
>>> instance running here at home; i was only thinking about setting up 
>>> caldav,carddav and wanted to use gmail imap;
>>> so i have no dovecot or postfix instance running; i hope that is not the 
>>> reason i cannot see any options to add additional imap accounts. however 
>>> when i use the sogo-tool i can add an account with MailAuxiliary. it is 
>>> also losted in the web interface. but on the email tab i only get the 
>>> message "no mailbox selected". is there any command i have to type in to 
>>> select my gmail account or something?
>>> thanks for ur time; 
>>> below my conf
>>> 
>>> {
>>> /* *  Main SOGo configuration file  
>>> **
>>>  *  
>>>  *   
>>>  * Since the content of this file is a dictionary in OpenStep plist format, 
>>>  *
>>>  * the curly braces enclosing the body of the configuration are mandatory.  
>>>  *   
>>>  * See the Installation Guide for details on the format.
>>>  *   
>>>  *  
>>>  *   
>>>  * C and C++ style comments are supported.  
>>>  *   
>>>  *  
>>>  *   
>>>  * This example configuration contains only a subset of all available   
>>>  *   
>>>  * configuration parameters. Please see the installation guide more 
>>> details. *
>>>  *  
>>>  *   
>>>  * ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file,   
>>>  *   
>>>  * make sure to move it away to avoid unwanted parameter overrides. 
>>>  *   
>>>  *  
>>>  *   
>>>  * 
>>> **/
>>> 
>>> /* Database configuration (mysql:// or postgresql://) */
>>> 
>>>   SOGoProfileURL = "mysql://sogo:**@localhost/sogo/sogo_user_profile";
>>>   OCSFolderInfoURL = "mysql://sogo:**@localhost/sogo/sogo_folder_info";
>>>   OCSSessionsFolderURL = 
>>> "mysql://sogo:**@localhost/sogo/sogo_sessions_folder";
>>> 
>>> 
>>> /* Mail */
>>> //SOGoDraftsFolderName = Drafts;
>>> //SOGoSentFolderName = Sent;
>>> //SOGoTrashFolderName = Trash;
>>> //SOGoIMAPServer = localhost;
>>> //SOGoSieveServer = sieve://127.0.0.1:4190;
>>> //SOGoSMTPServer = 127.0.0.1;
>>> //SOGoMailDomain = jasondaigo.de;
>>> //SOGoMailingMechanism = smtp;
>>> //SOGoForceExternalLoginWithEmail = NO;
>>> //SOGoMailSpoolPath = /var/spool/sogo;
>>> //NGImap4ConnectionStringSeparator = "/";
>>> 
>>> /* Notifications */
>>> //SOGoAppointmentSendEMailNotifications = NO;
>>> //SOGoACLsSendEMailNotifications = NO;
>>> //SOGoFoldersSendEMailNotifications = NO;
>>> 
>>> /* Authentication */
>>> //SOGoPasswordChangeEnabled = YES;
>>> SOGoUserSources =
>>>   (
>>> {
>>>   type = sql;
>>>   id = directory;
>>>   viewURL = "mysql://sogo:**@127.0.0.1:3306/sogo/sogo_users";
>>>   canAuthenticate = YES;
>>>   isAddressBook = YES;
>>>   displayName = "directory";
>>>   userPasswordAlgorithm = md5;
>>> }
>>>   );
>>> 
>>> /* SQL authentication example */
>>> /*  These database columns MUST be present in the view/table:
>>>  *c_uid - will be used for authentication -  it's the username or 
>>> usern...@domain.tld)
>>>  *c_name - which can be identical to c_uid -  will be used to uniquely 
>>> identify entries
>>>  *c_password - password of the user, plain-text, md5 or sha encoded for 
>>> now
>>>  *c_cn - the user's common name - such as "John Doe"
>>>  *mail - the user's mail address
>>>  *  See the installation guide for more details
>>>  */
>>> /* Web Interface */
>>> //SOGoPageTitle = SOGo;
>>> //SOGoVacationEnabled = YES;
>>> //SOGoForwardEnabled = YES;
>>> //SOGoSieveScriptsEnabled = YES;
>>> //SOGoMailAuxiliaryUserAccountsEnabled = YES;
>>> //SOGoTrustProxyAuthentication = NO;
>>> //SOGoXSRFValidationEnabled = YES;
>>> 
>>> /* General - SOGoTimeZone *MUST* be defined */
>>> //SOGoLanguage = German;
>>> //SOGoTimeZone = Europe/Berlin;
>>> //SOGoCalendarDefaultRoles = (
>>> //  PublicDAndTViewer,
>>> //  ConfidentialDAndTViewer
>>> //);
>>> 

Re: [SOGo] missing option to add additional imap account/error: "no mailbox selected"

2018-03-21 Thread Christian Mack
Hello

You have to uncomment options in sogo.conf, in order to make them active ;-)
Comments are the two slashes at the beginning of the line.

SOGoMailAuxiliaryUserAccountsEnabled is therefore not active in your
configuration.


Kind regards,
Christian Mack

Am 18.03.2018 um 21:45 schrieb Jason Daigo (m...@jasondaigo.de):
>>
>> sorry if i do this wriong; never used a mailing list before; after days of 
>> frustraion i got a sogo 
>> instance running here at home; i was only thinking about setting up 
>> caldav,carddav and wanted to use gmail imap;
>> so i have no dovecot or postfix instance running; i hope that is not the 
>> reason i cannot see any options to add additional imap accounts. however 
>> when i use the sogo-tool i can add an account with MailAuxiliary. it is also 
>> losted in the web interface. but on the email tab i only get the message "no 
>> mailbox selected". is there any command i have to type in to select my gmail 
>> account or something?
>> thanks for ur time; 
>> below my conf
>>
>> {
>>  /* *  Main SOGo configuration file  
>> **
>>   *  
>>  *   
>>   * Since the content of this file is a dictionary in OpenStep plist format, 
>>  *
>>   * the curly braces enclosing the body of the configuration are mandatory.  
>>  *   
>>   * See the Installation Guide for details on the format.
>>  *   
>>   *  
>>  *   
>>   * C and C++ style comments are supported.  
>>  *   
>>   *  
>>  *   
>>   * This example configuration contains only a subset of all available   
>>  *   
>>   * configuration parameters. Please see the installation guide more 
>> details. *
>>   *  
>>  *   
>>   * ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file,   
>>  *   
>>   * make sure to move it away to avoid unwanted parameter overrides. 
>>  *   
>>   *  
>>  *   
>>   * 
>> **/
>>
>>  /* Database configuration (mysql:// or postgresql://) */
>>
>>SOGoProfileURL = "mysql://sogo:**@localhost/sogo/sogo_user_profile";
>>OCSFolderInfoURL = "mysql://sogo:**@localhost/sogo/sogo_folder_info";
>>OCSSessionsFolderURL = 
>> "mysql://sogo:**@localhost/sogo/sogo_sessions_folder";
>>
>>
>>  /* Mail */
>>  //SOGoDraftsFolderName = Drafts;
>>  //SOGoSentFolderName = Sent;
>>  //SOGoTrashFolderName = Trash;
>>  //SOGoIMAPServer = localhost;
>>  //SOGoSieveServer = sieve://127.0.0.1:4190;
>>  //SOGoSMTPServer = 127.0.0.1;
>>  //SOGoMailDomain = jasondaigo.de;
>>  //SOGoMailingMechanism = smtp;
>>  //SOGoForceExternalLoginWithEmail = NO;
>>  //SOGoMailSpoolPath = /var/spool/sogo;
>>  //NGImap4ConnectionStringSeparator = "/";
>>
>>  /* Notifications */
>>  //SOGoAppointmentSendEMailNotifications = NO;
>>  //SOGoACLsSendEMailNotifications = NO;
>>  //SOGoFoldersSendEMailNotifications = NO;
>>
>>  /* Authentication */
>>  //SOGoPasswordChangeEnabled = YES;
>>  SOGoUserSources =
>>(
>>  {
>>type = sql;
>>id = directory;
>>viewURL = "mysql://sogo:**@127.0.0.1:3306/sogo/sogo_users";
>>canAuthenticate = YES;
>>isAddressBook = YES;
>>displayName = "directory";
>>userPasswordAlgorithm = md5;
>>  }
>>);
>>
>>  /* SQL authentication example */
>>  /*  These database columns MUST be present in the view/table:
>>   *c_uid - will be used for authentication -  it's the username or 
>> usern...@domain.tld)
>>   *c_name - which can be identical to c_uid -  will be used to uniquely 
>> identify entries
>>   *c_password - password of the user, plain-text, md5 or sha encoded for 
>> now
>>   *c_cn - the user's common name - such as "John Doe"
>>   *mail - the user's mail address
>>   *  See the installation guide for more details
>>   */
>>  /* Web Interface */
>>  //SOGoPageTitle = SOGo;
>>  //SOGoVacationEnabled = YES;
>>  //SOGoForwardEnabled = YES;
>>  //SOGoSieveScriptsEnabled = YES;
>>  //SOGoMailAuxiliaryUserAccountsEnabled = YES;
>>  //SOGoTrustProxyAuthentication = NO;
>>  //SOGoXSRFValidationEnabled = YES;
>>
>>  /* General - SOGoTimeZone *MUST* be defined */
>>  //SOGoLanguage = German;
>>  //SOGoTimeZone = Europe/Berlin;
>>  //SOGoCalendarDefaultRoles = (
>>  //  PublicDAndTViewer,
>>  //  ConfidentialDAndTViewer
>>  //);
>>  //SOGoSuperUsernames = (sogo1, sogo2, jason); // This is an array - keep 
>> the parens!
>>  //SxVMemLimit = 384;
>>  //WOPidFile = "/var/run/sogo/sogo.pid";
>>  //SOGoMemcachedHost = "/var/run/memcached.sock";
>>
>>  /* Debug */
>>  

[SOGo] missing option to add additional imap account/error: "no mailbox selected"

2018-03-18 Thread Jason Daigo
> 
> sorry if i do this wriong; never used a mailing list before; after days of 
> frustraion i got a sogo 
> instance running here at home; i was only thinking about setting up 
> caldav,carddav and wanted to use gmail imap;
> so i have no dovecot or postfix instance running; i hope that is not the 
> reason i cannot see any options to add additional imap accounts. however when 
> i use the sogo-tool i can add an account with MailAuxiliary. it is also 
> losted in the web interface. but on the email tab i only get the message "no 
> mailbox selected". is there any command i have to type in to select my gmail 
> account or something?
> thanks for ur time; 
> below my conf
> 
> {
>  /* *  Main SOGo configuration file  
> **
>   *   
> *   
>   * Since the content of this file is a dictionary in OpenStep plist format,  
> *
>   * the curly braces enclosing the body of the configuration are mandatory.   
> *   
>   * See the Installation Guide for details on the format. 
> *   
>   *   
> *   
>   * C and C++ style comments are supported.   
> *   
>   *   
> *   
>   * This example configuration contains only a subset of all available
> *   
>   * configuration parameters. Please see the installation guide more details. 
> *
>   *   
> *   
>   * ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file,
> *   
>   * make sure to move it away to avoid unwanted parameter overrides.  
> *   
>   *   
> *   
>   * 
> **/
> 
>  /* Database configuration (mysql:// or postgresql://) */
> 
>SOGoProfileURL = "mysql://sogo:**@localhost/sogo/sogo_user_profile";
>OCSFolderInfoURL = "mysql://sogo:**@localhost/sogo/sogo_folder_info";
>OCSSessionsFolderURL = 
> "mysql://sogo:**@localhost/sogo/sogo_sessions_folder";
> 
> 
>  /* Mail */
>  //SOGoDraftsFolderName = Drafts;
>  //SOGoSentFolderName = Sent;
>  //SOGoTrashFolderName = Trash;
>  //SOGoIMAPServer = localhost;
>  //SOGoSieveServer = sieve://127.0.0.1:4190;
>  //SOGoSMTPServer = 127.0.0.1;
>  //SOGoMailDomain = jasondaigo.de;
>  //SOGoMailingMechanism = smtp;
>  //SOGoForceExternalLoginWithEmail = NO;
>  //SOGoMailSpoolPath = /var/spool/sogo;
>  //NGImap4ConnectionStringSeparator = "/";
> 
>  /* Notifications */
>  //SOGoAppointmentSendEMailNotifications = NO;
>  //SOGoACLsSendEMailNotifications = NO;
>  //SOGoFoldersSendEMailNotifications = NO;
> 
>  /* Authentication */
>  //SOGoPasswordChangeEnabled = YES;
>  SOGoUserSources =
>(
>  {
>type = sql;
>id = directory;
>viewURL = "mysql://sogo:**@127.0.0.1:3306/sogo/sogo_users";
>canAuthenticate = YES;
>isAddressBook = YES;
> displayName = "directory";
>userPasswordAlgorithm = md5;
>  }
>);
> 
>  /* SQL authentication example */
>  /*  These database columns MUST be present in the view/table:
>   *c_uid - will be used for authentication -  it's the username or 
> usern...@domain.tld)
>   *c_name - which can be identical to c_uid -  will be used to uniquely 
> identify entries
>   *c_password - password of the user, plain-text, md5 or sha encoded for 
> now
>   *c_cn - the user's common name - such as "John Doe"
>   *mail - the user's mail address
>   *  See the installation guide for more details
>   */
>  /* Web Interface */
>  //SOGoPageTitle = SOGo;
>  //SOGoVacationEnabled = YES;
>  //SOGoForwardEnabled = YES;
>  //SOGoSieveScriptsEnabled = YES;
>  //SOGoMailAuxiliaryUserAccountsEnabled = YES;
>  //SOGoTrustProxyAuthentication = NO;
>  //SOGoXSRFValidationEnabled = YES;
> 
>  /* General - SOGoTimeZone *MUST* be defined */
>  //SOGoLanguage = German;
>  //SOGoTimeZone = Europe/Berlin;
>  //SOGoCalendarDefaultRoles = (
>  //  PublicDAndTViewer,
>  //  ConfidentialDAndTViewer
>  //);
>  //SOGoSuperUsernames = (sogo1, sogo2, jason); // This is an array - keep the 
> parens!
>  //SxVMemLimit = 384;
>  //WOPidFile = "/var/run/sogo/sogo.pid";
>  //SOGoMemcachedHost = "/var/run/memcached.sock";
> 
>  /* Debug */
>  //SOGoDebugRequests = YES;
>  //SoDebugBaseURL = YES;
>  //ImapDebugEnabled = YES;
>  //LDAPDebugEnabled = YES;
>  //PGDebugEnabled = YES;
>  //MySQL4DebugEnabled = YES;
>  //SOGoUIxDebugEnabled = YES;
>  //WODontZipResponse = YES;
>  //WOLogFile = /var/log/sogo/sogo.log;
>  //  PublicDAndTViewer,
>  //  ConfidentialDAndTViewer
>  //);
>  //SOGoSuperUsernames = (sogo1, sogo2, jason); // This is an array - keep the 
> parens!
>  //SxVMemLimit = 384;
>