very cool! some links from web searches points to 404 pages though.
Links from search engines to www.citadel.org are likely to 404 for a little while this year, because we just completed a major overhaul of the web site and the links have all changed. This will sort itself out on its own, of course.
Links from search engines to uncensored.citadel.org should be pretty good.
At the very least, they should get you within +-20 messages of what you searched for and into the correct room, because the search engines see the same paginated view that humans do.
Are there supposed to be links on this page?
http://www.citadel.org/download.html
Clicking anywhere in the boxes will take you to the destination.
Note...the "Packages" box has no clickability...methinks this is an indication that you should seek out your distibution's packages, from them, should you desire to run from there.
Subject: New web site..."user contributed procedures.."
I really like it! Only a few minor things.. and a feature request..
* Some of the formatting didn't survive the conversion process..
* Speaking specifically about any kind of code syntax highlighting..
* I write a lot of documents in markdown.. convert with pandoc.. and get by with only one or two html tags..
* One important of which is <code> </code>, a clearly delineated block of code for somebody to copy & paste..
* The new citadel website could use this, or a similar class in a few locations.. (bash stuff, and "commands")..
* I'd also like to see the ability to submit user created procedures or recipes.. how to, etc..
* Submit in plain markdown.md with <code></code> tags..
* Possibly as "comments" on an article, but mainly thinking about "how to", "tips and tricks" sections...
* Users scp/ftp their markdown file somewhere.. somebody looks at it, moves it to another directory (admin approval!)
* Markdown gets auto-generated into html on a "how to/tutorial" page..
It would be really nice.. I have a lot to contribute!
Sat Jul 04 2020 12:26:02 AM EDT from IGnatius T Foobar @ Uncensored
In other CitaNews, I'm pleased to announce that we have launched our new and improved project web site.
[ http://www.citadel.org ]
This has been in the works for a long time. The very dated-looking dokuwiki site has been retired. All of the information from that site has been moved to the new site, and much of it has been rewritten to become up to date with the current state of the Citadel system.
Corrections and suggestions are always welcome, of course.
Okay, forget "<code>" <pre> is already in use.. it's just not styled.
I didn't intend complex syntax highlighting requiring a javascript package.. just enough css for a little code block.
I was thinking something.. like this. (It looks a little better outside the tinymce editor.. ), just enough to be clear it's actual "code" or "commands".
It would be nice to have this on Uncensored! also for doing support stuff. I find myself typing <pre style="font-family:mono;"> a lot.
I bumped up the font size for visibility here.. probably not necessary.. Base font size is alleged to be 16px anyway..
pre { height: auto; overflow: auto; background-color: #fcfcfc; border-left: 5px solid #02b0ef; margin: 1.7em 0 1.7em .3em; word-break: normal !important; word-wrap: normal !important; white-space: pre !important; color: #000; font-size: 16px; }
#!/bin/bash echo "The rain in Spain stays mainly on the plain."
sudo su
Subject: Re: New web site.. "css style for pre tag"
I've applied the suggested modification. It looks pretty good ... although there's an issue with the margin.
So if you want to contribute, let's do this. I've placed the entire site into a git repository [ https://code.citadel.org/ ] under "www.citadel.org.git". See if you can pull that down and tinker with it. If it looks like something you can work with, we can either do pull requests or I'll set up an account with write access to the repository.
The site is, very deliberately, built with static HTML. The only dynamic portion of it at all is the use of server-side includes to put a consistent header and footer on each page. My goal was to move away from maintaining a document management system so that the web site is simple, maintainable, and doesn't consume time that would be better spent on Citadel itself. (The old site used a wiki as its CMS with the intention of community maintenance, but it eventually got into pretty bad shape.)
Thank you Art!..
I tried to clone the new repo..
I assumed the root would be the same as the other repositories, but maybe there's something to do to set it public.
git clone git://git.citadel.org/appl/gitroot/www.citadel.org.git
Cloning into 'www.citadel.org'...
fatal: remote error: access denied or repository not exported: /appl/gitroot/www.citadel.org.git
Anyway, I downloaded a snapshot of HEAD..
I'll take a look at it. We're doing a lot of html page conversions right now..
I don't mean to sound so narrowly focused and autistic that it doesn't sound like I am clearly addressing something... but..
The best composition and storage format for us has been markdown.. [I have an api basically, to convert pages back to markdown on the fly! .. ]
Markdown then lends itself well to conversion to both html and tex (html to tex is not so great, it's messy.. so we usually start with markdown and only a few css tags.)
Because our end goal is always printable books. [That's a thing we do a lot of. Markdown -> latex -> printable pdf source]
You can generate html at any point, preferably after everything is proofed in the origin format.
Most of the static site (and documentation) generators work with markdown also.
And it's not like it would be hard to write one (static generator).
The harder part is "designing" the book. The craft of outlining, table of contents.. index, etc..
I've been maintaining some of my own citadel docs for a while now..Some things I've had to dig out of the wayback machine..
Really looking forward to getting to this.
You have a nice weekend!
:)
Art, this will fix the issue with the margin on the pre tag. I think it looks pretty good for the short term.
pre { height: auto; overflow: auto; background-color: #F8F8F8; border-left: 5px solid #02b0ef; margin: 1.7em 0 1.7em .3em; word-break: normal !important; word-wrap: normal !important; white-space: pre !important; color: #000; padding: 20px; }
You might want to add
min-height: 600px;
to
.w3-container
.. a few of those pages a looking a little short!
But I'll do a better rundown next week.
Subject: Re: New web site.. "css style for pre tag"
A couple of thoughts:
1. I've applied the supplied fix to the PRE style, and it's looking good.
Thanks.
2. I did a "chmod -R git:git" on the www.citadel.org.git repository, so try it again.
3. Regarding the use of markdown, it's not out of the question but there has to be a way to make it easy and automatic to convert to HTML. If the web server can be programmed to translate ".md" files to HTML automatically, and also slap the header and footer on as it does so, then that's something we can look at. Alternately, we could use a Makefile to automatically build .html files from .md files, since we're treating the web site as a build now instead of as a CMS.
4. I'm thinking now that I definitely want your web design expertise on the front end of webcit-ng, if you're willing.
I'm just guessing at the URL for that repo Art! .. I have no idea what it is.. I checked the .git/config for the main citadel repo..and just "estimated" this..
git://git.citadel.org/appl/gitroot/www.citadel.org.git
That's what I'm guessing.. tried https and had a big laugh! You should try it..
git clone https://git.citadel.org/appl/gitroot/www.citadel.org.git
So, I'm sure we'll get that sorted out, but as I mentioned, I did download the whole snapshot of HEAD.
As to the rest, I'm thinking it might be good break it out into separate threads, but just to touch on things:
3. I was thinking mainly of the user contributed stuff, but I did take a look at the html of the other pages.
The only difference would be having the body of the document entirely in its own file, and the layout css around it, being part of the outer layout.
So instead of this
<div class="w3-row-padding w3-padding-64 w3-container">
<h1>Title of Document</h1>
<!-- HTML Body of document --!>
</div>
The page/article would contain only this.
<h1>Title of Document</h1>
<!-- HTML Body of document --!>
And the outer tags come from a script that builds it all. This is really simple. Even that can be automated.. I mean, parsing out those div tags.
[Very helpful to have it nice and portable like this when web stuff changes around!]
I've got much more complicated stuff building entire documents from web pages in Latex..
I'm not on any crusade about Markdown.. not in a "cargo cult".. it's just a handy intermediate format. easy to write.. entirely readable by itself.. It can contain html. You can pandoc it to pretty much anything you want.
3.5 - Yes. and yes. All that code should be documented, and that's how I was thinking about it.
4. I'll do whatever I can, particularly to free you up for writing C for the key value store. I'm used to higher level abstractions, so that's harder for me.
I'm quite invested in Citadel.. we use and rely on it. And have for many years.. so short of anything unexpected, I am happy to help.
Thanks for your vote of confidence!
Fri Oct 09 2020 06:20:56 PM EDT from IGnatius T Foobar @ Uncensored Subject: Re: New web site.. "css style for pre tag"
A couple of thoughts:
1. I've applied the supplied fix to the PRE style, and it's looking good.
Thanks.
2. I did a "chmod -R git:git" on the www.citadel.org.git repository, so try it again.
3. Regarding the use of markdown, it's not out of the question but there has to be a way to make it easy and automatic to convert to HTML. If the web server can be programmed to translate ".md" files to HTML automatically, and also slap the header and footer on as it does so, then that's something we can look at. Alternately, we could use a Makefile to automatically build .html files from .md files, since we're treating the web site as a build now instead of as a CMS.
4. I'm thinking now that I definitely want your web design expertise on the front end of webcit-ng, if you're willing.
Subject: Re: New web site.. "css style for pre tag"
I'm just guessing at the URL for that repo Art! .. I have no idea
what it is.. I checked the .git/config for the main citadel repo..and
just "estimated" this..
git://git.citadel.org/appl/gitroot/www.citadel.org.git
Ok, after racking my brains on this for way longer than should have been necessary ...
It's working now. And yes, that is the correct git URL. (No, HTTPS doesn't work.)
It turns out I had my git-daemon set to serve from /appl/gitroot/citadel.git, prohibiting clones of any other repository no matter how nicely I encouraged it. :(
All righty then ... back to the day job for a few more hours and then I'll get back to this again.
I've got it, thanks Art!
Tue Oct 13 2020 04:17:35 PM EDT from IGnatius T Foobar @ Uncensored Subject: Re: New web site.. "css style for pre tag"I'm just guessing at the URL for that repo Art! .. I have no idea
what it is.. I checked the .git/config for the main citadel repo..and
just "estimated" this..
git://git.citadel.org/appl/gitroot/www.citadel.org.git
Ok, after racking my brains on this for way longer than should have been necessary ...
It's working now. And yes, that is the correct git URL. (No, HTTPS doesn't work.)
It turns out I had my git-daemon set to serve from /appl/gitroot/citadel.git, prohibiting clones of any other repository no matter how nicely I encouraged it. :(
All righty then ... back to the day job for a few more hours and then I'll get back to this again.
Just to follow up to an extent.. sorry to be running behind, but time has been a rare commodity lately..
My last post in Support, "How to auto compact db files [Tutorial] and a Proof of Concept.."
was directed to answer the question about db file size, so I also used the opportunity to write it in markdown.
Have a look at the pdf.. [Also attached here.. ]
This is the direction I think a lot of the Citadel documentation could be going..
automatically-compact-citadel-database-files-with-c_shrink_db_files.pdf (application/pdf, 453039 bytes) [ View | Download ]
Subject: Re: A documentation proof of concept...
And yes, the c_shrink_db_files has been there for a while ... I don't quite remember how the discussion started, but I discovered that Berkeley DB had acquired a "compact" function, so I added the option to use it, figuring that whoever was asking for it would give it a good hard test. I guess it worked because we never heard from them again.
According to the commit timestamp, that was over three years ago. Actually it was just a couple of weeks before The Accident so I'm just going to use the excuse that the painkiller meds flushed c_shrink_db_files out of my brain and I forgot about it :)
As a quick announcement --
www.citadel.org has been moved to new hosting arrangements. There should have been no noticeable changes, but if you see anything let me know and we'll take care of it right away.
I extracted all the public facing (internally linked) urls, and am archiving them all on the wayback machine at the moment..
List of urls attached, and also a few 404s.
...just some documentation. I've been compiling a list of older 404s I was hoping to provide redirects sometime in the future..
Fri Oct 30 2020 11:13:13 AM EDT from IGnatius T Foobar @ Uncensored
As a quick announcement --
www.citadel.org has been moved to new hosting arrangements. There should have been no noticeable changes, but if you see anything let me know and we'll take care of it right away.
--2020-10-30 13:24:46-- https://www.citadel.org/robots.txt
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:46 ERROR 404: Not Found.
--
--2020-10-30 13:24:47-- https://www.citadel.org/doku.php?id=features
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:47 ERROR 404: Not Found.
--
--2020-10-30 13:24:51-- https://www.citadel.org/comercial_solutions.html
Connecting to www.citadel.org (www.citadel.org)|173.68.125.114|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:51 ERROR 404: Not Found.
--
Location: https://www.citadel.org/robots.txt [following]
--2020-10-30 13:24:52-- https://www.citadel.org/robots.txt
Connecting to www.citadel.org (www.citadel.org)|173.68.125.114|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:52 ERROR 404: Not Found.
--
--2020-10-30 13:24:58-- https://www.citadel.org/configuring_postfix_to_validate_email_addresses_against_a_citadel_server
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:58 ERROR 404: Not Found.
--2020-10-30 13:24:58-- https://www.citadel.org/qpsmtpd
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:58 ERROR 404: Not Found.
--2020-10-30 13:24:58-- https://www.citadel.org/blacklists_rbls_or_dnsbl
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:58 ERROR 404: Not Found.
--2020-10-30 13:24:58-- https://www.citadel.org/how_do_i_beautify_the_mailname_of_a_public_room.html
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:58 ERROR 404: Not Found.
--2020-10-30 13:24:58-- https://www.citadel.org/how_do_i_post_messages_via_smtp_mail_into_a_room
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:58 ERROR 404: Not Found.
--
--2020-10-30 13:24:58-- https://www.citadel.org/mailing_lists.html
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:59 ERROR 404: Not Found.
--
--2020-10-30 13:24:59-- https://www.citadel.org/howto_install_new_certificate
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:59 ERROR 404: Not Found.
--2020-10-30 13:24:59-- https://www.citadel.org/net_sniff
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:59 ERROR 404: Not Found.
--
--2020-10-30 13:24:59-- https://www.citadel.org/credits_and_license.gtml
Reusing existing connection to www.citadel.org:443.
HTTP request sent, awaiting response... 404 Not Found
2020-10-30 13:24:59 ERROR 404: Not Found.
https://www.citadel.org/001_module_types.html
https://www.citadel.org/002_coding_style.html
https://www.citadel.org/003_module_init.html
https://www.citadel.org/004_api_by_purpose.html
https://www.citadel.org/adhowto1.gif
https://www.citadel.org/adhowto2.gif
https://www.citadel.org/adhowto3.gif
https://www.citadel.org/adhowto4.gif
https://www.citadel.org/adhowto5.gif
https://www.citadel.org/after_upgrading_server.html
https://www.citadel.org/aidepost.html
https://www.citadel.org/apacheproxy.html
https://www.citadel.org/authmodes.html
https://www.citadel.org/bitlebee.html
https://www.citadel.org/blacklists_rbls_or_dnsbl
https://www.citadel.org/blacklists_rbls_or_dnsbl.html
https://www.citadel.org/calendar.png
https://www.citadel.org/can_i_configure_citadel_to_use_an_anti_virus_program.html
https://www.citadel.org/can_i_install_citadel_on_a_shared_web_hosting_account.html
https://www.citadel.org/cartoon-castle.gif
https://www.citadel.org/catchall.html
https://www.citadel.org/chkpw.html
https://www.citadel.org/chrptr.html
https://www.citadel.org/citadel2018.png
https://www.citadel.org/citadel-32x32-icon.gif
https://www.citadel.org/citadel_bb.html
https://www.citadel.org/citadel_bombs_out_with_a_segmentation_fault_during_setup_or_when_i_attempt_to_run._what_should_i_do.html
https://www.citadel.org/citadel-button-32x32.gif
https://www.citadel.org/citadel_homepagelogo_180px.gif
https://www.citadel.org/citadel_logo-final.pdf
https://www.citadel.org/citadel_logo.html
https://www.citadel.org/citadel_past_present_and_future.html
https://www.citadel.org/citadel_promologo_120px.gif
https://www.citadel.org/citadel_promologobluebg_120.gif
https://www.citadel.org/citadel_sends_my_mail_out_with_a_different_from_than_i_specified_in_my_email_client.html
https://www.citadel.org/citadel_uncensoredbbslogo.gif
https://www.citadel.org/citadel_with_spamassassin_and_clamav.html
https://www.citadel.org/citmail.html
https://www.citadel.org/citserver_crashes_when_running_on_debian_linux_when_sending_out_internet_email._fix.html
https://www.citadel.org/citserver_fails_to_start_with_a_message_such_as_cdb_dbenv_open_function_not_implemented.html
https://www.citadel.org/citserver.html
https://www.citadel.org/code_of_conduct.html
https://www.citadel.org/coding_style.html
https://www.citadel.org/comercial_solutions.html
https://www.citadel.org/compile_debs.html
https://www.citadel.org/configure_qmail_to_deliver_to_citadel.html
https://www.citadel.org/configuring_postfix_to_validate_email_addresses_against_a_citadel_server
https://www.citadel.org/configuring_postfix_to_validate_email_addresses_against_a_citadel_server.html
https://www.citadel.org/connection_broken_smtp.html
https://www.citadel.org/create_subroom.html
https://www.citadel.org/credits_and_license.gtml
https://www.citadel.org/credits_and_license.html
https://www.citadel.org/ctdlaidemessage.html
https://www.citadel.org/ctdlgetfloor.html
https://www.citadel.org/ctdlgetsysconfig.html
https://www.citadel.org/ctdlputsysconfig.html
https://www.citadel.org/customize_webcit.html
https://www.citadel.org/deferred_processing.html
https://www.citadel.org/determine_ezinstall_or_debs.html
https://www.citadel.org/developer.html
https://www.citadel.org/dictionary.html
https://www.citadel.org/disk_space.html
https://www.citadel.org/documentation.html
https://www.citadel.org/does_citadel_have.html
https://www.citadel.org/doku.php?id=features
https://www.citadel.org/download.html
https://www.citadel.org/dspam.html
https://www.citadel.org/easyinstall_force_reinstall.html
https://www.citadel.org/edit_config_the_hard_way.html
https://www.citadel.org/error_creating_new_user.html
https://www.citadel.org/escapers.html
https://www.citadel.org/example1.html
https://www.citadel.org/faq.html
https://www.citadel.org/file_layout.html
https://www.citadel.org/forgotpassword.html
https://www.citadel.org/gdb.html
https://www.citadel.org/general_configuring.html
https://www.citadel.org/gethash.html
https://www.citadel.org/get_sample_messages.html
https://www.citadel.org/getting_mails_into_citadel.html
https://www.citadel.org/global_sieve.html
https://www.citadel.org/groupdav_urls.html
https://www.citadel.org/headset_hottie.jpg
https://www.citadel.org/hints_for_installing_citadel_on_mac_os.html
https://www.citadel.org/how_can_i_batch_create_a_list_of_users_on_a_new_system.html
https://www.citadel.org/how_can_i_import_ldif_format_contacts_into_an_address_book_room.html
https://www.citadel.org/how_do_i_access_room_content_without_logging_into_webcit.html
https://www.citadel.org/how_do_i_allow_citadel.html
https://www.citadel.org/how_do_i_automatically_forward_all_mail_to_a_remote_email_address_somewhere.html
https://www.citadel.org/how_do_i_beautify_the_mailname_of_a_public_room.html
https://www.citadel.org/how_do_i_configure_email_aliases_for_a_user.html
https://www.citadel.org/how_do_i_create_a_public_mailbox_to_be_accessed_by_several_users.html
https://www.citadel.org/how_do_i_disable_sendmail_on_freebsd.html
https://www.citadel.org/how_do_i_disable_the_main_menu_in_the_text_mode_client.html
https://www.citadel.org/how_do_i_enable_ansi_color_support.html
https://www.citadel.org/how_do_i_expire_messages.html
https://www.citadel.org/how_do_i_get_citadel.html
https://www.citadel.org/how_do_i_move_citadel_to_another_host.html
https://www.citadel.org/how_do_i_post_messages_via_smtp_mail_into_a_room
https://www.citadel.org/how_do_i_post_messages_via_smtp_mail_into_a_room.html
https://www.citadel.org/how_do_i_retrieve.html
https://www.citadel.org/how_do_i_uninstall_citadel.html
https://www.citadel.org/how_do_you_base_your_claims_that_citadel_is_powerful_and_scalable.html
https://www.citadel.org/how_may_i_improve.html
https://www.citadel.org/howto_have_different_recipientrooms_for_different_domains.html
https://www.citadel.org/how_to_install_a_certificate_signed_by_a_recognized_certificate_authority.html
https://www.citadel.org/howto_install_new_certificate
https://www.citadel.org/howto_login_first.html
https://www.citadel.org/i_can_t_compile_the_program._what_should_i_do.html
https://www.citadel.org/i_have_duplicate_mails_in_my_sent_items_folder._why.html
https://www.citadel.org/i_installed_webcit.html
https://www.citadel.org/i_like_squirrel_mail._how_do_i_run_it_on_top_of_citadel.html
https://www.citadel.org/i_m_having_trouble_with_the_external_editor_in_the_text_cit_client_for_ms_windows.html
https://www.citadel.org/index.html
https://www.citadel.org/install-btn.jpg
https://www.citadel.org/installing_citadel_on_freebsd.html
https://www.citadel.org/installing_citadel_on_rpm_based_distro.html
https://www.citadel.org/instant_expunge.html
https://www.citadel.org/intermediate_versions.html
https://www.citadel.org/invitation_from_facebook.html
https://www.citadel.org/is_citadel_web_based_or_text_based.html
https://www.citadel.org/is_it_necessary_to_use_the_citmail_mda.html
https://www.citadel.org/i_want_to_automate.html
https://www.citadel.org/i_want_to_be_a_whitehead.html
https://www.citadel.org/jabber.html
https://www.citadel.org/journaling.html
https://www.citadel.org/ldap_deprecated.html
https://www.citadel.org/libcitadel_api.html
https://www.citadel.org/libical.html
https://www.citadel.org/libs.html
https://www.citadel.org/logging.html
https://www.citadel.org/login-bg.gif
https://www.citadel.org/login.html
https://www.citadel.org/loglevel.html
https://www.citadel.org/logo-2020-website.png
https://www.citadel.org/mailing_lists.html
https://www.citadel.org/mail.png
https://www.citadel.org/mail_terms.html
https://www.citadel.org/maximum_store_size.html
https://www.citadel.org/messages.html
https://www.citadel.org/migrating_ldap_into_citadel.html
https://www.citadel.org/migrating_mail_into_citadel.html
https://www.citadel.org/mobile.html
https://www.citadel.org/modules.html
https://www.citadel.org/monitoring.html
https://www.citadel.org/msadsso.html
https://www.citadel.org/ms_outlook.html
https://www.citadel.org/mutt_runs_slow_why.html
https://www.citadel.org/my_calendar_entries_in_kmail_kontact_show_different_hours_than_webcit.html
https://www.citadel.org/net.html
https://www.citadel.org/net_sniff
https://www.citadel.org/net_sniff.html
https://www.citadel.org/newstrbufplain.html
https://www.citadel.org/no_backups.html
https://www.citadel.org/notes.png
https://www.citadel.org/notification_api.html
https://www.citadel.org/openid.html
https://www.citadel.org/openid-logo-small.png
https://www.citadel.org/osi_keyhole_300X300_90ppi.png
https://www.citadel.org/outbound_mail.html
https://www.citadel.org/out_of_lock_entries.html
https://www.citadel.org/password_strength.html
https://www.citadel.org/postmaster_and_co.html
https://www.citadel.org/preferences.html
https://www.citadel.org/protocol.html
https://www.citadel.org/ps.html
https://www.citadel.org/publicroom.png
https://www.citadel.org/qpsmtpd
https://www.citadel.org/qpsmtpd.html
https://www.citadel.org/rdbms_store_layer.html
https://www.citadel.org/recover.html
https://www.citadel.org/relay.html
https://www.citadel.org/richedit.html
https://www.citadel.org/richedit.png
https://www.citadel.org/robots.txt
https://www.citadel.org/room.html
https://www.citadel.org/room.jpg
https://www.citadel.org/rooms.html
https://www.citadel.org/rss_aggregation.html
https://www.citadel.org/screenshot-bbs-knrooms.png
https://www.citadel.org/screenshot-bbs-messages.png
https://www.citadel.org/screenshot-evolution-calendar.png
https://www.citadel.org/screenshot-kontact-addressbook.png
https://www.citadel.org/screenshot-kontact-calendar.png
https://www.citadel.org/screenshot-outlook-mail.png
https://www.citadel.org/screenshots.html
https://www.citadel.org/sendcommand.html
https://www.citadel.org/servcfg.html
https://www.citadel.org/server_api.html
https://www.citadel.org/setup_crashes_right.html
https://www.citadel.org/setup.html
https://www.citadel.org/shared_account.html
https://www.citadel.org/sieve.html
https://www.citadel.org/siteconfig.png
https://www.citadel.org/software_development.png
https://www.citadel.org/sourcecode.html
https://www.citadel.org/spamassassin.html
https://www.citadel.org/spamassassin.png
https://www.citadel.org/standby_server.html
https://www.citadel.org/start.html
https://www.citadel.org/strbufappendbufplain.html
https://www.citadel.org/strlength.html
https://www.citadel.org/substlist.html
https://www.citadel.org/summary.png
https://www.citadel.org/support.html
https://www.citadel.org/system_administration_manual.html
https://www.citadel.org/systemd.html
https://www.citadel.org/tasks.png
https://www.citadel.org/tb-add-on-menu.jpg
https://www.citadel.org/tb-kolab-cal.jpg
https://www.citadel.org/tb-kolab-options.jpg
https://www.citadel.org/tb-kolab-tool.jpg
https://www.citadel.org/tb-ok.jpg
https://www.citadel.org/tb-options.jpg
https://www.citadel.org/tb-toolbars-customise.jpg
https://www.citadel.org/tb-tools-menu.jpg
https://www.citadel.org/terminology.html
https://www.citadel.org/the_client_crashes_when_i_hit_enter_message._how_can_i_fix_this.html
https://www.citadel.org/the_client_locks.html
https://www.citadel.org/threads.html
https://www.citadel.org/tracking_citadel.html
https://www.citadel.org/training_sa.html
https://www.citadel.org/undraw_features_overview_jg7a.png
https://www.citadel.org/undraw_programming_2svr.png
https://www.citadel.org/userlist.html
https://www.citadel.org/using_your_citadel_calendar_and_contacts_in_thunderbird.html
https://www.citadel.org/viewhack.html
https://www.citadel.org/webcit_appears.html
https://www.citadel.org/webcit_browser.html
https://www.citadel.org/webcit_built_successfull_with_locale_support_but_it_s_nailed_to_one.html
https://www.citadel.org/webcit_doesnt_open_the.addressbook_popup.html
https://www.citadel.org/webcit_file_icons.html
https://www.citadel.org/webcit.html
https://www.citadel.org/webcit_unable_to_connect.html
https://www.citadel.org/webcit_users_appear_with_the_wrong_hostname_in_the_whois_online_page.html
https://www.citadel.org/webcit_without_citadel.html
https://www.citadel.org/what_are_the_memory_requirements.html
https://www.citadel.org/what_if_someone_wants_to_make_a_room_into_a_mailing_list_can_we_do_that.html
https://www.citadel.org/what_is_the_best_way_to_backup_my_citadel_installation.html
https://www.citadel.org/what_is_the_difference_between_citadel_and_citadel_ux.html
https://www.citadel.org/what_operating_systems_are_supported.html
https://www.citadel.org/what_source_code_license_do_you_use.html
https://www.citadel.org/what_s_wrong.html
https://www.citadel.org/what_url_s_do_i_use.html
https://www.citadel.org/when_i_send.html
https://www.citadel.org/when_i_telnet.html
https://www.citadel.org/where_is_home_base_for_citadel.html
https://www.citadel.org/wholist.html
https://www.citadel.org/why_don_t_i_see.html
https://www.citadel.org/zlib.html
http://www.citadel.org/robots.txt
Subject: Re: Archived! .. new host seems nice and fast
It's funny that you are finding it nice and fast, because the site is currently hosted in a 1 CPU, 768 MB VRAM virtual machine on my home computer :)
That may or may not be its permanent home, but that's where it's running right now.
Subject: Re: [CitaNews] Re: Archived! .. new host seems nice and fast
On 10/30/20 2:46 PM, IGnatius T Foobar wrote:
It's funny that you are finding it nice and fast, because the site is currently
hosted in a 1 CPU, 768 MB VRAM virtual machine on my home computer :)
That may or may not be its permanent home, but that's where it's running
right now.
Subject: Re: [CitaNews] Re: Archived! .. new host seems nice and fast
Subject: Re: [CitaNews] Re: Archived! .. new host seems nice and fast
On 11/1/20 2:08 AM, IGnatius T Foobar wrote:
Well, see if it's still faster now. I've moved it to what will now be more
or less its final location.