Hello, i think the title says it all.
The documentation:
documentation.cpanel.net
My attempt was:
/usr/local/cpanel/bin/spf_installer cpanelname -include:a.b.c 0 1 0
but he result was that the
+include:a.b.c
was turned to
-include:a.b.c
my aim is to remove whole part out of the record, by whole part i mean for example:
+include:a.b.c
-include:a.b.c
How the command should look like? Note i do not want to write whole record into the command as i will run the command for many accounts and i want to preserve their own specific customizations.
The documentation:
The spf_installer Script - Version 68 Documentation - cPanel Documentation
My attempt was:
/usr/local/cpanel/bin/spf_installer cpanelname -include:a.b.c 0 1 0
but he result was that the
+include:a.b.c
was turned to
-include:a.b.c
my aim is to remove whole part out of the record, by whole part i mean for example:
+include:a.b.c
-include:a.b.c
How the command should look like? Note i do not want to write whole record into the command as i will run the command for many accounts and i want to preserve their own specific customizations.
for user in `ls -A /var/cpanel/users` ; do
echo "Working with user $user"
/usr/local/cpanel/bin/spf_installer $user ......
echo "sleep 1" && sleep 1; done