boolean_smtp_migration_max_log_rows
Filters the maximum number of email-log rows an import reads from another plugin.
filter Tier B Since 1.0.0
Signature
add_filter( 'boolean_smtp_migration_max_log_rows', $callback, 10, 1 );Parameters
| Parameter | Type | Description |
|---|---|---|
$max | int | Rows, newest first; 0 for no cap. Default 5000. |
Returns int —
Fires in
app/Services/Migration/MigrationScanner.php:357—BooleanSmtp\Services\Migration\MigrationScanner::maxLogRows()
Example
add_filter( 'boolean_smtp_migration_max_log_rows', function ( int $max ) { return $max;}, 10, 1 );Next steps
- Migration from other plugins — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.