{% extends "layout.html" %} {% block flash %} {% endblock %} {% block header %} {% endblock %} {% block body %}

{{title}}

Enable/Disable Calibre-Web Automated Services

{% if acw_settings['auto_convert'] %} {% else %} {% endif %}

On by default, when active all ingested books will automatically be converted to the target format specified below (epub by default) EXCEPT those you have specifically told ACW to ignore below.

{% if acw_settings['auto_metadata_enforcement'] %} {% else %} {% endif %}

On by default, when active, whenever the Metadata and/or Cover Image is edited in the Web UI, the ACW Metadata Enforcement service will then apply those changes the ebook files themselves. Normally in Stock CW or when this setting is disabled, the changes made are only applied to what you see in the Web UI, not the ebook files themselves. This feature currently only supports files in EPUB or AZW3 format.

{% if acw_settings['kindle_epub_fixer'] %} {% else %} {% endif %}

When active, the encoding among other attributes of all EPUB files processed by ACW will be checked and fixed to ensure maximum compatibility with Amazon's Send-to-Kindle Service.

(TLDR: if you've ever had EPUB files that Amazon just constantly rejects for seemingly no reason, this should prevent that from happening again). This tool was adapted from the kindle-epub-fix.netlify.app tool made by innocenat.

Web UI Settings

{% if acw_settings['acw_update_notifications'] %} {% else %} {% endif %}

When active, you will no longer receive notifications in the Web UI when a new version of ACW is released

Automatic Backup Settings

{% if acw_settings['auto_backup_imports'] %} {% else %} {% endif %}

When active, a copy of all imported files will be stored in /config/processed_books/imported

{% if acw_settings['auto_backup_conversions'] %} {% else %} {% endif %}

When active, the originals of ingested files that undergo conversion will be stored in /config/processed_books/converted

{% if acw_settings['auto_backup_epub_fixes'] %} {% else %} {% endif %}

When active, the originals of EPUBs processed by the ACW Kindle EPUB Fixer service will be stored in /config/processed_books/fixed_originals


{% if acw_settings['auto_zip_backups'] %} {% else %} {% endif %}

When active, just before midnight each day, the acw-auto-zipper service will make zip archives of all the backed up converted, imported and failed files from that day. This is to help keep the subdirectories of /config/processed_books organised and to minimise disk space usage.

ACW Auto-Conversion Target Format - EPUB by Default

When the Auto-Convert feature is active, all ingested books will be automatically converted to the format chosen here (except those formats selected in the ignore list below)

* ACW's Metadata Enforcement service can currently only support file in either EPUB and AZW3 format. Files in other formats will simply be ignored by the service

ACW Auto-Convert - Ignored Formats

The formats selected here will be ignored by ACW's Auto-Conversion feature when it's active, meaning they will be imported as is.

{% for format in ignorable_formats -%} {% endfor %}

ACW Auto-Ingest - Ignored Formats

The formats selected here will be ignored by ACW's Auto-Ingest feature, meaning files in these formats won't be added to the library by ACW during the ingest process

{% for format in ignorable_formats -%} {% endfor %}


{% endblock %}