|  | @@ -1,4 +1,5 @@
 | 
	
		
			
			| 1 | 1 |  #!/bin/bash
 | 
	
		
			
			|  | 2 | +# Freedombone install script intended for use with Debian Jessie
 | 
	
		
			
			| 2 | 3 |  
 | 
	
		
			
			| 3 | 4 |  DOMAIN_NAME=$1
 | 
	
		
			
			| 4 | 5 |  MY_USERNAME=$2
 | 
	
	
		
			
			|  | @@ -517,6 +518,10 @@ function configure_imap {
 | 
	
		
			
			| 517 | 518 |    sed -i 's|#   mail_location = maildir:~/Maildir|   mail_location = maildir:~/Maildir:LAYOUT=fs|g' /etc/dovecot/conf.d/10-mail.conf
 | 
	
		
			
			| 518 | 519 |  }
 | 
	
		
			
			| 519 | 520 |  
 | 
	
		
			
			|  | 521 | +function configure_gpg {
 | 
	
		
			
			|  | 522 | +  apt-get -y install gnupg
 | 
	
		
			
			|  | 523 | +}
 | 
	
		
			
			|  | 524 | +
 | 
	
		
			
			| 520 | 525 |  initial_setup
 | 
	
		
			
			| 521 | 526 |  install_editor
 | 
	
		
			
			| 522 | 527 |  enable_backports
 | 
	
	
		
			
			|  | @@ -537,3 +542,4 @@ script_to_make_self_signed_certificates
 | 
	
		
			
			| 537 | 542 |  configure_email
 | 
	
		
			
			| 538 | 543 |  spam_filtering
 | 
	
		
			
			| 539 | 544 |  configure_imap
 | 
	
		
			
			|  | 545 | +configure_gpg
 |