Language:
switch to room list switch to menu My folders
Go to page: First ... 12 13 14 15 [16] 17 18 19 20
[#] Sun Jul 21 2024 11:45:52 EDT 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 06:21:31 EDT 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



[#] Mon Jul 22 2024 21:41:20 EDT 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 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



[#] Mon Jul 29 2024 22:21:50 EDT 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.

[#] Mon Jul 29 2024 22:22:31 EDT 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 05:50:22 EDT 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 16:43:30 EDT 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 13:36:44 EDT 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 14:03:41 EDT 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 02:59:56 EDT 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 05:53:00 EDT 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 15:00:58 EDT 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.

[#] Sun Aug 11 2024 23:35:58 EDT 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.



[#] Mon Aug 12 2024 04:50:55 EDT from nickb

Subject: missing SERACH feature in show as: Bulletin Boar

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

Dear Support,

There  is another feature that disappeared.

The SEARCH function for the bulletin style email reader.

So here it works under MAIL

Then it DISAPPEARS under the show as BULLETIN board style. I also found it to be really handy to be able to read emails like a bulletin board then be able to find key words in my emails.

Thanks!

 

 

 

 

 



[#] Mon Aug 12 2024 15:23:58 EDT from warp

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

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

 

Sun Aug 11 2024 23:35:58 EDTfrom warp Subject: Docker installation fails to start webcit and enters loop: need help

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.

 

Found the issue. I had apache running in the background.



 



[#] Tue Aug 13 2024 09:02:25 EDT from IGnatius T Foobar

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

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

Found the issue. I had apache running in the background.

Glad to hear it wasn't a software defect, but it tells us that we should look for an opportunity to bring that particular error message out to the front so that the operator can see it. Thank you.

[#] Tue Aug 13 2024 09:04:19 EDT from IGnatius T Foobar

Subject: Re: missing SERACH feature in show as: Bulletin Boar

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

Then it DISAPPEARS under the show as BULLETIN board style. I
also found it to be really handy to be able to read emails like
a bulletin board then be able to find key words in my emails.

Can you clarify please ... was there a previous version of Citadel in which this appeared differently, or are you pointing out the difference between the Mail and Forums view and requesting the search box in one of them?

And if it is an older version where it worked differently, what version was that? WebCit-classic hasn't been significantly modified in quite some time but we can run a diff and see if something was accidentally lost.

Go to page: First ... 12 13 14 15 [16] 17 18 19 20