Courier (lankoski) Mac OS

Courier (lankoski) Mac OS

May 25 2021

Courier (lankoski) Mac OS

  1. Courier (lankoski) Mac Os X
  2. Courier (lankoski) Mac Os Catalina
  3. Courier (lankoski) Mac Os 11
  4. Courier (lankoski) Mac Os Download
  • NOTE: The latest versions of Adobe Reader do not support viewing PDF files within Firefox on Mac OS and if you are using a modern (Intel) Mac, there is no official plugin for viewing PDF files within the browser window.
  • There are numerous monospace fonts included as standard on computers, and the Courier family is probably the most famous, appearing in both Windows and Mac OS X systems. We previously shared a few fonts that deviate from the standard Courier appearance, but there are many, many more, including a ‘sans’ variant of Courier Prime that remains.

Please use the same Parcel account on all Mac and iOS devices to sync your purchases and deliveries. Some features, such as push notifications and tracking more than 3 deliveries are limited to premium subscribers. Current price for the premium subscription is $2.99 per year, and may vary from country to country. Courier can function as an intermediate mail relay, between an internal LAN and the Internet, or perform final delivery to mailboxes. Courier uses maildirs as its native storage format and can also deliver mail to legacy mailbox files. Configuration files are in plain text format and may include Perl scripts. Courier can provide mail services for regular operating system accounts.

According to a WhoIs and trace route search, that address does indeed belong to Apple, Inc. There are a lot of mail exchange links associated with it. You probably have Mail set to grab push data, which it will do rather continuously throughout the day.


In their punny humor, one of the returns gave this 'Star Wars' line:


Courier (lankoski) Mac OS

This is not the nameserver you are looking for.


Courier (lankoski) Mac OS

Funny guys. 🙂 Anyway, find and deselect any options for push content.


Push content can also come from Safari, or other web browser. In Safari, go to the preferences and click on the RSS tab. Change Check for Updates to Never.Click the Remove Now button to remove reams of garbage that is on your hard drive if RSS was on.

Nov 23, 2012 7:26 AM

This is a short write up for an easy way to install Courier-IMAP on a machine running Mac OS X client (and probably just the Darwin core as well)

Target

I wanted to have my own IMAP-server both for archival purposes (on my own machine I have practilcally unlimited space to save e-mail) as well as a mean to collect mail I receive on other accounts into one unified storage. Furthermore I want a better way to handle mail than common e-mail clients like AppleMail, Thunderbird or Eudora offers - currently I am looking into Zoë (Google you e-mail) and Mulberry (the superior, with a good margin, IMAP-client)

I will do this step by step and update this document as I progress:

Courier (lankoski) Mac Os X

  1. Install Courier-IMAP
  2. Arrange a simple ugly setup to fetch and filter mail
  3. Make Courier use (x)inetd
  4. Setup a stable mail fetching function, probably with fetchmail or something similar
  5. Install server side filtering (sieve)
  6. Install server side anti-spam means
  7. Setup an LDAP-server that cooperates with the Address Book in Mac OS X, the server side anti-spam functionality and the e-mail clients built in address books.
  8. Enable SSL-support.

Purposes

  • »Unlimited» space on an IMAP-server
  • Robust server side filtering
  • Tight integration between MUA:s, address books and IMAP-server
  • Improved (faster and cheaper) e-mailhandling when you are on using a mobile setup (in my case I frequently use slow and expensive GPRS-connections when I am abroad). With this setup you can user server side filtering of mail and when you are on the road you just setup your MUA to ignore less important mailboxes.
  1. Install DarwinPorts
  2. Note how you got a new Startup Item in /Library/StartupItems
  3. Use DarwinPorts to install courier
    port install courier-imap
  4. Now you have a lot of courier-stuff in your /opt/local. The following are of interest:
    in /opt/local/bin/
    imapd
    maildirmake
    in /opt/local/etc/courier-imap/
    imapd
    in /opt/local/libexec/
    imapd.rc

Courier (lankoski) Mac Os Catalina

Before we begin to dissect these we first have to understand something else:

DarwinPorts StartupItem

The DarwinPorts StartupItem basically runs all items in (typically) /opt/local/etc/rc.d/ with the verb start. With that in mind we can look into the start up procedure of Courier-IMAP and its startup scripts:

imapd-sh/imapd-ssl.sh

When you install Courier-IMAP the following script are stored in /opt/local/etc/rc.d/ and are therefore executed(with the verb start) when the computer boots:

  • imapd-ssl.sh
  • imapd.sh

These scripts are quite similar, they source/opt/local/etc/courier-imap/imapd (and imapd-ssl) and then execute /opt/local/libexec/imapd.rc start (imapd-ssl.rc). Now that we know this we can go back to the files of interest mentioned above. We begin with last of the two files the start scripts uses, the run command files:

imapd.rc/imapd-ssl.rc

These run command files set up some environment variables and then launches the executable with a few switches.

imapd/imapd-ssl in /opt/local/etc/courier-imap/

These are the setting files for Courier-IMAP. They are fairly well documented/commented. I made a few changes:

ADDRESS

I changed its value from 0 to 127.0.0.1. This way you can have a secure setup without having to mess with the SSL-setup1 at the moment since you only allow connections from localhost which forces clients to tunnel their traffic to the machine where Courier-IMAP is running, e.g., by SSH. If the tunnel is setup as it should then this method is perfectly safe.

IMAP_EMPTYTRASH=Trash:7

I commented this setting to make the server behave more like regular MUA:s, i.e., not deleting messages in the trash automatically.

Note that these configration files have the same names as the executables in /opt/local/bin/.

imapd in /opt/local/bin/

This is the actual IMAP-server executable. You can, but I advise against it, start this directly from the command line. It has an extensive man-page.

maildirmake

You have to run this for each user before they can log in. I have only tried to log in with Mozilla Thunderbird without first running maildirmake for a certain user and at least Thunderbird gives an error message indicating, incorrectly, that your password is erroneous if you don't do this. Simply cd to each user's home directory and run maildirmake Maildir and it will create a directory called Maildir with three sudirectories, cur, new and tmp.

You can give another name as argument to maildirmake but then, in my experience, you can not login. It seems as Courier-IMAP has hard coded the name of the mail directory because I can not find any setting for it either. If you know anything about this, please let me know.

Start the server [an error occurred while processing this directive]

If you reboot the server will start automatically but easier is just to runt the startup script in /opt/local/etc/rc.d/. Since we , for the moment, re happy with just using the plain text imapd simply start the server from the command line:

/opt/local/etc/rc.d/imapd.sh start

If you take a look with top you will notice a few new processes, e.g., imapd, courierlog, couriertcp, authdemon and maybe a few more. You can verify that the server is running with

Courier (lankoski) Mac Os 11

telnet localhost 127.0.0.1 143

You should see something like this:

telnet localhost 143
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS] Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc. See COPYING for distribution information.

You can also make sure that you are secure by logging into another computer and try to telnet from that computer to your IMAP-server on port 143.

Courier (lankoski) Mac Os Download

Now create a new account in your MUA and set it up for your new IMAP-server and play around (try to transfer som junk mail from already existing accounts/mailboxes to your new IMAP-server, create a few folders on the server etc).

This is a very simple step that you probably don't need to have documented if you have gone this but anyway...

This is how I did it: create a filter with the highest/first priority in your regular MUA. Make that filter transfer a copy (it is important that it is a copy or elsewise you might lose mail if the setup proves to be unstable or unreliable) of every received mail to some folder on your IMAP-server.

Footnotes

  1. adjust the values in /opt/local/etc/courier-imap/imapd.cnf to match your name, location etc.
  2. run /opt/local/sbin/mkimapdcert as root. It does not take any arguments. This will generate a certificate that works for IMAP and is stored in /opt/local/share/courier/imapd.pem

Note that the ssl-version won't start without this certifcate. Also note that you can run SSL and clear text versions of courier-imap in parallell.

Courier (lankoski) Mac OS