Language:

en_US

switch to room list switch to menu My folders
Go to page: First ... 10 11 12 13 [14] 15 16 17 18 ... Last
[#] Sun Jul 21 2024 00:02:41 UTC from MarisaG

Subject: Re: Clearing the log files?

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

Oops! Meant to do that!



[#] Sun Jul 21 2024 00:03:38 UTC from MarisaG

Subject: How to clear the log files?

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

I have a server that seems to be keeping the logs forever, and keeps running out of space. How do I force it to remove the logs once they are committed?

Marisa



[#] Sun Jul 21 2024 13:57:05 UTC from IGnatius T Foobar

Subject: Re: How to clear the log files?

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


There is a system setting called "Automatically delete committed database logs" in your global configuration. You can change it from WebCit (administration screen) or from the text client (.Admin System-configuration General). Set it to "Yes" to make Citadel Server purge database log files that are no longer needed.

This is also the default setting.

[#] Sun Jul 21 2024 14:07:10 UTC from Kurisu

Subject: Re: Minor Privacy Upgrade.

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

Nice little hack.

Granted WebCit is on the way out, I do feel in the interim something to this effect might be nice in release as a default.

Still, if memory serves that information would still be present via a Who lookup on the text client, so it's still not a complete obfuscation...



[#] Sun Jul 21 2024 15:45:52 UTC from IGnatius T Foobar

Subject: Re: Minor Privacy Upgrade.

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

Is this something important enough to build in as a server-side configuration option?

[#] Mon Jul 22 2024 10:21:31 UTC from Tuinboon

Subject: Mailserver DNS issues

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

Hello, I setup my own mailserver and its kinda weird how its setup but ill try to explain. I have a mailserver at mail.domain.com and its sending mail for my domain domain.com. The server is self hosted and a PTR record for my IP is set to the ISP's domain but that domain is pointed to my IP which makes my email panel accesible via the ISP's domain the only issue is that im receiving a 550-5.7.25 error. Can someone help me setup the right DNS records?

 

My current DNS records are:

mail.domain.com.    1    IN    A !MYIP!

domain.com.    1    IN    MX    10 mail.domain.com.

domain.com.    1    IN    TXT    "v=spf1 ip4:!MYIP! -all"

 

and when I run dig on my IP

!ReversedIP!.in-addr.arpa. 86400 IN     PTR     !ReversedIP!.ISP.com

 

And some DMARC and domainkey records



[#] Tue Jul 23 2024 01:41:20 UTC from IGnatius T Foobar

Subject: Re: Mailserver DNS issues

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

Did you try a testing service such as https://easydmarc.com/tools/spf-lookup with your domain name? Those will usually tell you exactly what is correct and what needs to be fixed.

[#] Thu Jul 25 2024 05:56:46 UTC 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 12:25:36 UTC 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 15:17:33 UTC 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



[#] Tue Jul 30 2024 02:21:50 UTC from IGnatius T Foobar

Subject: Re: How do I configure users on different domains?

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

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

Very easy: you just give them email addresses in different domains.

Their account names in Citadel have to be different, of course. But you could for example have a Citadel user called "John Doe" with an email address of john@example.com , and another Citadel user called "John Deere" with an email address of john@tractors.net , and Citadel will handle them as you expect.

Obviously, all of those domains need to be configured in your server as local domains.

[#] Tue Jul 30 2024 02:22:31 UTC from IGnatius T Foobar

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

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.

I see you also posted to the development room -- I'll answer this there.

[#] Tue Jul 30 2024 09:50:22 UTC from DaveC

Subject: Re: How do I configure users on different domains?

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

Thanks.

 

Clearly, the user names have to be diffierent on Citadel.

 

Previously, I had dave@xyz.com as the username, but Citadel removes the @sign.

 

My users all currently have their full email address as their username. Is there any way to do this?

 

Dave Coventry



[#] Tue Jul 30 2024 20:43:30 UTC from IGnatius T Foobar

Subject: Re: How do I configure users on different domains?

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

I don't think you can put "@" in the account name.

[#] Thu Aug 01 2024 17:36:44 UTC from luisgo

Subject: Could you please answer to this post? Thanks.

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

 

Thu Jul 25 2024 08:25:36 EDT from luisgo Subject: Citadel became unsuable.

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.

 



 



[#] Thu Aug 01 2024 18:03:41 UTC from Nurb432

Subject: Re: Could you please answer to this post? Thanks.

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

there was a similar question in an earlier thread, which had a solution.  i have not found it yet. but i do believe it was in this room a couple of weeks ago.



[#] Tue Aug 06 2024 06:59:56 UTC from nickb

Subject: search function disappeared after update

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

Dear Citadel Support,

I noticed that the LATEST update is missing an important FEATURE

When you view as a "Bulletin Board", there is no search.

Can you please add that back on!?!?!?



[#] Thu Aug 08 2024 09:53:00 UTC from luisgo

Subject: Re: Citadel became unsuable.

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

 

Thu Jul 25 2024 08:25:36 EDT from luisgo Subject: Citadel became unsuable.

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.

 



I think that this problem was solved in the last version of Thunderbird for Windows (Nebula).

Previous version deleted email by email generating big logs.

This new version deletes a group of emails at once generating no so much (big space) logs files.



[#] Fri Aug 09 2024 19:00:58 UTC from IGnatius T Foobar

Subject: Re: Citadel became unsuable.

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

Well I'm glad that the new version made it work because I was unable to reproduce the problem.

[#] Mon Aug 12 2024 03:35:58 UTC from warp

Subject: Docker installation fails to start webcit and enters loop: need help

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

Hi,

I've been using citadel on and off for a while now, and so far, the experience is great. I was installing citadel on another system for another use case, and just found out there's a docker version. I pulled the image, like the commands on the site say, and now it's stuck in a loop trying to start webcit:

 

ctdlvisor: pid=278 exited, status=25856, exitcode=101
ctdlvisor: webcit (HTTP) running on pid=279
ctdlvisor: executing webcit (http)
ctdlvisor: pid=279 exited, status=25856, exitcode=101
ctdlvisor: webcit (HTTP) running on pid=280
ctdlvisor: executing webcit (http)

 

and so on for every other PID that isn't being used. I can't find anything on how to solve this. Any and all help will be greatly appreciated.

 

Thanks in advance.



Go to page: First ... 10 11 12 13 [14] 15 16 17 18 ... Last