As part of PaperCut’s Print Archiving feature on a macOS secondary server you may need to automatically mount a SMB share so that the PaperCut Print Provider can provide the appropriate files for archiving by the PaperCut Application Server.
We have had an elegant solution presented to us by one of our customers - Sam from MacKillop College in Australia.
The resolution I came up with has two parts, a shell script and a launchd.
A shell script papercutmount.sh:
#!/bin/bash # Source variables from print-provider.conf . /Applications/PaperCut\ MF/providers/print/mac/print-provider.conf # Log in as local PaperCut account and execute all following commands as this user su papercut << EOS # Create a folder to mount to mkdir $ArchiveDir # Mount the share mount -t smbfs //$ArchiveUser:$ArchivePass@$ApplicationServer/archive $ArchiveDir EOS And the launchd saved in /Library/LaunchDaemons/com.papercut.maparchive.plist (note to change the path to the shell file)
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.papercut.maparchive.plist</string> <key>ProgramArguments</key> <array> <string>/path/to/papercutmount.sh</string> </array> <key>RunAtLoad</key> <true/> </dict> </plist> Then the following variables also need to be added to the print-provider.conf file, as users only need to enter this info in the one place where they are familiar to setting config options.
ArchiveDir=/Volumes/archive ArchiveUser=svc-papercut ArchivePass=PASSWORD Downside is that the password is in clear text, however this is a limited domain account on a “secure” server. If this was an issue, you could use one of these methods: http://serverfault.com/questions/367950/secure-way-to-mount-a-password-protected-cifs-share-in-mac However, it may require some more user interaction.
One final note is that if the PaperCut Application Server is rebooted, the mounted shares are disconnected and the Mac OS X Secondary Print Server will fail to save the print archive files. The quickest fix is to re-run the script or reboot the Secondary server.
Articles in this section
- PaperCut MF - New SSL certificate (macOS)
- New KB article template
- Xerox embedded devices - Incorrect login screen issues
- Handling hidden characters in card numbers
- Scan to multiple email destinations
- PaperCut NG/MF Security Bulletin (March 2026)
- PaperCut Hive and Pocket Compatibility Tool
- Enabling ARM64 support in PaperCut NG/MF Print Deploy
- Incorrect stapling when printing multiple copies via a Find-Me queue using HP PCL drivers
- Resetting the PaperCut Hive or Pocket app (Android & iOS)
Comments
0 comments
Please sign in to leave a comment.