Language:
switch to room list switch to menu My folders
Go to page: First ... 17 18 19 20 [21]
[#] Thu Jul 25 2024 01:56:46 EDT from UFarx

[Reply] [ReplyQuoted] [Headers] [Print]

hi,

the conftests in version 1001 (and likely all previous ones as well) need an upgrade. they fail with compilers which default to c99 due to formalities and hence the actual check fails even if it would actually pass.

conftest.c:25:3: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support impli
cit int [-Wimplicit-int]
25 | main() {
| ^
| int
conftest.c:29:4: error: call to undeclared library function 'exit' with type 'void (int) __attribute__((n
oreturn))'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declarat
ion]
29 | exit(0);
| ^
conftest.c:29:4: note: include the header <stdlib.h> or explicitly provide a declaration for 'exit'



skeleton so far:

main() {
exit(0);
}



should be:

#include <stdlib.h>
int main() {
exit(0);
}


[#] Thu Jul 25 2024 08:25:36 EDT from luisgo

Subject: Citadel became unsuable.

[Reply] [ReplyQuoted] [Headers] [Print]

Dear All,

1st I had to delete or move (to a local folder (Thunderbird)) 2 months of sent and received emails. I done such operation with Thunderbird.

2nd The data folder (/usr/local/citadel/data) had 2.6GBytes occupied.

3rd With that operation many log files were generated and the disk became full (about 9 GBytes in data folder). Citadel became unusable. I used a old data backup to recover.

Could you provide a solution for this do not happen again? Perhaps do not generate the log files.

Thanks for the support that will be provided,

Luís Gonçalves.

 



[#] Fri Jul 26 2024 11:17:33 EDT from DaveC

Subject: How do I configure users on different domains?

[Reply] [ReplyQuoted] [Headers] [Print]

Hi,

 

I've just set up Citadel on 2 VPS servers after years of dicking around with Postfix, Dovecot and MySQL.

 

I'm baffled as to how to set up for users with different domains.

 

If I have 4 domains, xyz.com, fxy.com, zfx.com and zyy.com, how do I configure email user accounts for them? If I have 4 guys called dave and each of them has an account at each domain, how do I set it up?

 

Many thanks,

 

Dave Coventry



Go to page: First ... 17 18 19 20 [21]