Skip to main content

MacOS Stores a Copy of Everything You Print Forever - Really?

·10 mins

A few weeks ago I stumbled upon a video titled "macOS stores a copy of everything one prints forever", which talks about the same thing as a similarly called Reddit thread that was posted the same day and received more than 8000 upvotes. Apparently, macOS keeps a copy of every file that you ever print, even if you delete the original file, so it would seem.

Being naturally curious about this, I opened up terminal, ran a few commands and .… voilà! I found information about every file I ever printed on my mac and the actual pdf files of more than half of them, including potentially sensitive ones like various vaccination or immigration certificates. Wow! So no, this post does not really have a Betteridge headline!

How to do it? #

Before diving down into how it works, here’s the tl;dr if you just wanna get the files. Note that depending on your system, you might recover all, some, or none of your files, but since it’s quick to check, you might as well try it.

The first step is to open terminal and type in:

sudo ls /var/spool/cups

Then press enter, type your password1, and press enter again. If the output shows a bunch of files starting with c or d followed by numbers, e.g. c00001 or d00021-001, as shown below, you’re golden and ready to recover some of your previously printed files. If you don’t see such files and want to find out why, read the next section.

Output of running <code>sudo ls /var/spool/cups</code> showing a bunch of files

To recover the files, I wrote a quick Python script that tries to retrieve the printed files and their info (e.g. name, time of printing). You can download it here and check out its repository on Codeberg (or GitHub).

After you download and unzip it, make sure you’ve got Python installed, and then change the terminal directory to the folder with the script (assuming you’ve extracted it to a mac-retrieve-printed-files folder within your Downloads, run cd ~/Downloads/mac-retrieve-printed-files) and then run:

sudo python retrieve_printed_files.py

Then again, type in your password and press enter. This will attempt to create a new folder (shown below) with all retrieved files and a csv file with information about every file ever printed, even if the file itself could not be recovered.

Output folder after running the Python script, showing a couple of retrieved PDF files and the csv file

You can look in the created retrieved-printed-files folder to check out the retrieved PDF files, and open the all_retrieved_files_data.csv to see information about all previously printed files, even if the actual files could not be recovered.

If you don’t like running a random Python script as root, check out the repository to examine it, or to alternatively run a four-line shell script (also in that repo) that will just try to recover the files without their metadata.

There you go!

The following sections will delve into the inner workings of how/why this works, but if you’d just like to delete the print history and/or prevent your Mac from keeping copies of printed files in the future, check out the section How to purge everything and stop further print files being saved? below, or see the guide from the original video linked above, or even the Reddit thread.

How does this work? #

Ok, now for the deep dive!

MacOS uses an open-source printing system called CUPS, which is developed by Apple, but also used by some Linux distributions for file printing. When you print a file, CUPS make a copy of the file and stores it in a CUPS data file, such as d00123-001. Along the data file, CUPS also creates a control file, such as d00123, which stores other information about the print job, such as the name of the printer, file name, time of printing, and so on. Upon printing, these files are created in the /var/spool/cups directory.

To recover the files, you can just copy the CUPS directory and add the correct extension to the data files to retrieve the original file, e.g. d00123-001.pdf. For me, I’ve only ever printed pdfs, so adding .pdf to each data file did the trick. However, if you want to find out the metadata, i.e. the original file name, or the time of printing, you have to dissect the control files, which is a little messy.

Before starting to parse the control files, a quick n’ easy alternative is to use the CUPS web interface, as outlined in this article from more than a decade ago. Basically just run cupsctl WebInterface=yes in the terminal and then open http://localhost:631/jobs?which_jobs=all in your browser to see your printing history:

CUPS web interface showing all printed files, along with their names, times, and other information.

To get more information about the printed files, the control files have to be parsed. They unfortunately don’t use a common format or encoding, so I initially struggled with parsing these binary files. Luckily, as with almost anything, some people have already had the same issue and asked about it on Stack Overflow, which led me to discover go-cups-control-files, an open-source Go library for parsing CUPS control files.

However, since Go doesn’t come as standard on Macs2, and this use case of extracting all previously printed files was a bit different, I wrote the Python script mentioned above — now Go compiling isn’t needed. The original question on Stack Overflow also mentions the possibility of compiling CUPS from source and using the testipp CLI to parse the control files, so feel free to use what you like.

But wait, so does Mac really store every printed file forever? #

Yes and no. As explained above, when you print a file, CUPS stores its copy in a data file such that it can convert it to the desired format for your printer. The real question is, for how long are these files kept, and if/when are they purged? The answer does not seem to be universal.

In my case, CUPS stored all control files of every file I’ve ever printed (dating years back) and about two thirds of those also had data files3. But YMMV — when reading the comments on YouTube and Reddit, people encountered a range of scenarios:

Youtube comment stating all files were stored by CUPS

Youtube comment stating files were even copied from a previous Mac and error logs taking a lot of space

Youtube comment stating files were only stored by CUPS for about two months

Reddit comment stating that the person didn&rsquo;t find any files stored by CUPS

Why such diverse scenarios? What controls how long are CUPS files stored? The CUPS configuration files.

CUPS stores in config files in the /etc/cups directory, the main config file being cupsd.conf. Reading the official cupsd.conf documentation on apple.com reveals a number of parameters that can be tweaked:

  • PreserveJobHistory: controls whether the history of completed, canceled, or aborted print jobs is retained, default value is On.

  • PreserveJobFiles: controls whether the document files of completed, canceled, or aborted print jobs are retained, default value is 1d (one day).

  • AutoPurgeJobs: specifies whether or not to purge completed jobs once they are no longer required for quotas, default setting is No.

  • MaxJobs: controls the maximum number of jobs that are kept in memory, default setting is 500.

These defaults would suggest that job data is retained forever, but job files are kept just for a day. However, I couldn’t find any changed values in my cupsd.conf file and still had a job file history of around 40 files, going back many months, which isn’t in accordance with the defaults, so dunno 🤷‍♂️.

How do I purge everything and stop further printed files being saved? #

Based on the parameters mentioned above, opening cupsd.conf (e.g. by sudo nano /etc/cups/cupsd.conf), pasting in the following lines and saving the file should prevent further files from being saved:

MaxJobs 0
PreserveJobHistory Off
PreserveJobFiles Off
AutoPurgeJobs Yes

And to purge the currently saved files, just run this in terminal:

cancel -a -x

This is also covered in the tutorial linked to the YouTube video by Sun Knudsen mentioned above.

That being said, the thing is, should you even bother changing CUPS configs to prevent your files from being kept? Is letting CUPS store your printed files that big of a big deal? I’m gonna explore that in the following section.

So should I be worried? #

Very likely no.

The original video and the Reddit thread, along with the discussion that followed, were quite focused on the security and privacy implications of files being kept by CUPS. However, from a security standpoint, this really isn’t much of an issue. The CUPS folder is protected, so as a “regular” user, you can’t even access it in Finder, since you can only read and copy it with root privileges.

This basically means that the files have the highest level of protection on your Mac, and someone has to have access to your computer and know your password to get to them. That person should only be you anyway, so if that ain’t the case, you prolly have some bigger problems!

I think that the issue, which understandably upset many people, is in fact the difference between the expected behaviour from the user’s point of view and the actual behaviour under the hood. If you print a file and then delete it, you don’t expect that that file is gonna stick around somewhere in your computer afterwards.

However, in this day and age, where there’s full disk encryption (FileVault on Mac), there’s really not much to worry about. There’s probably a ton of more sensitive stuff lying somewhere in your computer, but only you with your password should be able to access it.

In fact, it should be the case that your print history shouldn’t be the most incriminating stuff on your computer, since the computer isn’t the problem in this case. The real problem is the inherent insecurity of actually printing sensitive documents.

Printing itself is the culprit! #

This is the case since printing documents requires you to either print stuff using someone elses printer, or your printer, neither of which are secure operations.

When printing somewhere else, e.g. in your work or school/university printers, you’re usually sending the files to someone else’s computer, where they can be logged and easily attributed to you. And when printing on your own printer, the good ol’ question to ask is — is your printer actually yours?

Unlike 3D printers, there doesn’t seem to by any commonly available open-source printers, which means that you have no idea what is your printer actually doing, and it probably isn’t anything with your best interest in mind (who would’ve thought!).

As pointed out by NGOs like the EFF years ago, the majority of common printers secretly embed information like their serial number and the time of printing into each printed page4. And since so many of them are now “smart”, they also connect to the internet, which is obviously great!

Yup, so if you were just about to print that death_threat_letter.pdf, you might wanna reconsider that 🙊!

All jokes aside, the conclusion is that you shouldn’t worry about printing your normal documents, but might want to think twice with more sensitive stuff like cryptocurrency paper wallets, which was the starting point of the original video that inspired this blog.

Thanks a lot for reading, and if you’ve stuck til the end, I’d be really happy if you subscribe to my blog, or get in touch with me! Have a good one!


  1. You won’t see the characters as you type. ↩︎

  2. Although my script currently requires Python 3, I might rewrite it to be compatible with Python 2 that comes as standard on Macs. EDIT: Apparently, macOS stopped coming with Python 2 from this year, so I guess less work for me. ↩︎

  3. Interestingly, the data files weren’t kept for a continuous range of latest printed files, as I would’ve assumed, but there were some gaps in between — I might explore that in the future. ↩︎

  4. Thanks to this, “bad guys” like whistleblowers can “thankfully” end up in jail↩︎