freedombone-utils-gpg 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # gpg functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2016 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. function enable_email_encryption_at_rest {
  31. for d in /home/*/ ; do
  32. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  33. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  34. if grep '#| /usr/bin/gpgit.pl' /home/$USERNAME/.procmailrc; then
  35. sed -i 's@#| /usr/bin/gpgit.pl@| /usr/bin/gpgit.pl@g' /home/$USERNAME/.procmailrc
  36. sed -i 's|#:0 f|:0 f|g' /home/$USERNAME/.procmailrc
  37. fi
  38. fi
  39. done
  40. if grep '#| /usr/bin/gpgit.pl' /etc/skel/.procmailrc; then
  41. sed -i 's@#| /usr/bin/gpgit.pl@| /usr/bin/gpgit.pl@g' /etc/skel/.procmailrc
  42. sed -i 's|#:0 f|:0 f|g' /etc/skel/.procmailrc
  43. fi
  44. }
  45. function disable_email_encryption_at_rest {
  46. for d in /home/*/ ; do
  47. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  48. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  49. if ! grep '#| /usr/bin/gpgit.pl' /home/$USERNAME/.procmailrc; then
  50. sed -i 's@| /usr/bin/gpgit.pl@#| /usr/bin/gpgit.pl@g' /home/$USERNAME/.procmailrc
  51. sed -i 's|:0 f|#:0 f|g' /home/$USERNAME/.procmailrc
  52. fi
  53. fi
  54. done
  55. if ! grep '#| /usr/bin/gpgit.pl' /etc/skel/.procmailrc; then
  56. sed -i 's@| /usr/bin/gpgit.pl@#| /usr/bin/gpgit.pl@g' /etc/skel/.procmailrc
  57. sed -i 's|:0 f|#:0 f|g' /etc/skel/.procmailrc
  58. fi
  59. }
  60. # NOTE: deliberately no exit 0