Title: Foxry Vault
Author: foxry
Published: <strong>22 آوریل 2026</strong>
Last modified: 22 آوریل 2026

---

جستجوی افزونه‌ها

![](https://ps.w.org/foxry-vault/assets/icon-256x256.png?rev=3512972)

# Foxry Vault

 توسط [foxry](https://profiles.wordpress.org/foxry/)

[دانلود](https://downloads.wordpress.org/plugin/foxry-vault.1.2.0.zip)

 * [جزئیات](https://fa.wordpress.org/plugins/foxry-vault/#description)
 * [نقد و بررسی‌ها](https://fa.wordpress.org/plugins/foxry-vault/#reviews)
 *  [نصب](https://fa.wordpress.org/plugins/foxry-vault/#installation)
 * [توسعه](https://fa.wordpress.org/plugins/foxry-vault/#developers)

 [پشتیبانی](https://wordpress.org/support/plugin/foxry-vault/)

## توضیحات

**Never lose a Contact Form 7 submission again.**

Foxry Vault is a lightweight database backup for Contact Form 7. Every submission
is automatically saved to a dedicated database table — so you have a permanent record
even if email delivery fails, your SMTP breaks, or a message lands in spam.

Features include entry editing, GDPR-friendly auto-deletion, CSV export, and a dashboard
widget.

**Key Features**

 * 📥 Automatic saving of every CF7 submission to a dedicated DB table
 * ✏️ **Edit entries** after submission
 * 🗑️ **Auto-delete** old entries on a schedule for GDPR compliance
 * 🔒 Privacy controls — disable IP address logging with one click
 * 📊 Dashboard widget with today / this week / unread counts and latest entries
 * 🔍 Search across all submission contents
 * 🏷️ Filter by form, mark as read/unread, bulk actions
 * 📤 CSV export with full Excel/Japanese (BOM) support
 * 🌐 Fully translatable (Japanese translation bundled)
 * ⚡ Custom database table with proper indexes

**Why Foxry Vault?**

 * **Edit entries** — fix typos, redact PII, correct mistakes after submission.
 * **GDPR-ready** — automatic retention policies, optional IP logging, clean uninstall.
 * **Performant** — custom database table with proper indexes for fast queries.
 * **Standard UI** — built on WP_List_Table for a familiar admin experience.

**Requirements**

 * WordPress 6.0+
 * PHP 7.4+
 * Contact Form 7 6.0+

## عکس‌های صفحه

 * [[
 * Entry list — sortable columns, form filter, bulk actions, CSV export, and unread
   badges (English)
 * [[
 * Entry detail — all submitted fields with metadata and edit/delete actions (English)
 * [[
 * Settings — auto-delete schedule for GDPR compliance and IP address privacy toggle(
   English)
 * [[
 * Dashboard widget — today / this week / unread counts with latest entries at a
   glance (English)
 * [[
 * Entry list — Japanese translation with full i18n support (日本語)
 * [[
 * Entry detail — Japanese translation (日本語)
 * [[
 * Settings — Japanese translation (日本語)
 * [[
 * Dashboard widget — Japanese translation (日本語)

## نصب

 1. Upload the `foxry-vault` folder to `/wp-content/plugins/`
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Make sure Contact Form 7 is installed and activated
 4. That’s it! Form submissions will be automatically saved

## سوالات متداول

### Does this plugin require Contact Form 7?

Yes. Contact Form 7 6.0 or newer must be installed and active. Foxry Vault hooks
into the `wpcf7_before_send_mail` action to capture each submission.

### Where is form data stored?

In a dedicated custom database table (`wp_foxry_vault_entries`) with indexes on 
form_id, submitted_at, and is_read for fast queries. Submission fields are stored
as JSON with full Unicode support, so Japanese, emoji, and special characters are
preserved exactly.

### Can I edit a submission after it’s been received?

Yes — this is one of the main reasons Foxry Vault exists. Open any entry and click“
Edit” to fix typos, redact personal information, or correct fields. Both single-
line and multi-line fields are supported, and checkbox/array values can be edited
as comma-separated lists.

### How does the auto-delete feature work?

Go to **Foxry Vault  Settings** and enable auto-delete. Choose a retention period(
30, 60, 90, 180, or 365 days). A daily WP-Cron job will then permanently delete 
entries older than the configured age. This is useful for GDPR / personal data retention
compliance.

### Can I disable IP address logging?

Yes. In **Settings  Privacy**, uncheck “Save IP address”. New submissions will not
record the visitor’s IP. Existing entries are not retroactively modified.

### Will I lose data if I deactivate the plugin?

No. Deactivation only stops capturing new submissions and unschedules the cleanup
cron. Your existing data, settings, and database table are preserved. Data is only
removed when you fully uninstall (delete) the plugin from the Plugins screen.

### Are spam submissions saved?

No. If Contact Form 7 (or an integration like reCAPTCHA / Akismet) marks a submission
as spam, Foxry Vault skips saving it.

### Does it work with multisite?

Yes, on a per-site basis. Each site has its own `wp_foxry_vault_entries` table.

### How do I export submissions?

On the entries list, click **Export CSV** in the toolbar. The CSV is UTF-8 with 
BOM, so it opens cleanly in Excel — including Japanese text. The current form filter
and search query are respected.

### Is it compatible with Flamingo or CFDB7?

Yes, they can run side-by-side. Foxry Vault uses its own table and doesn’t touch
theirs. We recommend picking one as your primary tool to avoid duplicate UI.

## نقد و بررسی‌ها

نقد و بررسی‌ای برای این افزونه یافت نشد.

## توسعه دهندگان و همکاران

“Foxry Vault” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کرده‌اند.

مشارکت کنندگان

 *   [ foxry ](https://profiles.wordpress.org/foxry/)

[ترجمه “Foxry Vault” به زبان شما.](https://translate.wordpress.org/projects/wp-plugins/foxry-vault)

### علاقه‌ مند به توسعه هستید؟

[Browse the code](https://plugins.trac.wordpress.org/browser/foxry-vault/), check
out the [SVN repository](https://plugins.svn.wordpress.org/foxry-vault/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/foxry-vault/) by
[RSS](https://plugins.trac.wordpress.org/log/foxry-vault/?limit=100&mode=stop_on_copy&format=rss).

## گزارش تغییرات

#### 1.2.0

 * Added entry editing feature
 * Added auto-delete settings (GDPR compliance)
 * Added IP address saving toggle for privacy
 * Added dashboard widget with submission statistics
 * Added entry edit link in list view row actions

#### 1.1.0

 * Added CSV export feature
 * Added Japanese translation
 * Improved entry detail layout
 * Added guide message for empty state
 * UI improvements

#### 1.0.0

 * Initial release
 * Automatic CF7 submission saving
 * Admin list view with pagination
 * Entry detail view
 * Read/unread status
 * Bulk actions
 * Form filter
 * Search across all fields

## اطلاعات

 *  نگارش **1.2.0**
 *  Last updated **1 ماه پیش**
 *  نصب‌های فعال **کمتر از 10**
 *  نگارش وردپرس ** 6.0 یا بالاتر **
 *  Tested up to **6.9.4**
 *  نگارش PHP ** 7.4 یا بالاتر **
 *  زبان
 * [English (US)](https://wordpress.org/plugins/foxry-vault/)
 * Tags
 * [cf7](https://fa.wordpress.org/plugins/tags/cf7/)[contact form 7](https://fa.wordpress.org/plugins/tags/contact-form-7/)
   [database](https://fa.wordpress.org/plugins/tags/database/)[form entries](https://fa.wordpress.org/plugins/tags/form-entries/)
   [form submissions](https://fa.wordpress.org/plugins/tags/form-submissions/)
 *  [نمایش پیشرفته](https://fa.wordpress.org/plugins/foxry-vault/advanced/)

## امتیازها

هنوز هیچ نقدی ارسال نشده است.

[Your review](https://wordpress.org/support/plugin/foxry-vault/reviews/#new-post)

[مشاهده همه بررسی‌ها](https://wordpress.org/support/plugin/foxry-vault/reviews/)

## مشارکت کنندگان

 *   [ foxry ](https://profiles.wordpress.org/foxry/)

## پشتیبانی

چیزی برای گفتن دارید؟ نیاز به کمک دارید؟

 [مشاهده انجمن پشتیبانی](https://wordpress.org/support/plugin/foxry-vault/)