Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
freedombone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Context Sensitive Group
freedombone
Commits
6a632e59
Commit
6a632e59
authored
6 years ago
by
Bob Mottram
Browse files
Options
Downloads
Patches
Plain Diff
Outgoing email proxying
parent
cc0ebda2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/freedombone-base-email
+40
-0
40 additions, 0 deletions
src/freedombone-base-email
src/freedombone-installer
+19
-0
19 additions, 0 deletions
src/freedombone-installer
with
59 additions
and
0 deletions
src/freedombone-base-email
+
40
−
0
View file @
6a632e59
...
...
@@ -1008,6 +1008,46 @@ function install_email_basic {
systemctl restart exim4
}
function
email_smtp_proxy_through_isp
{
isp_smtp_domain
=
"
$1
"
isp_smtp_port
=
"
$2
"
isp_smtp_username
=
"
$3
"
isp_smtp_password
=
"
$4
"
if
[[
"
$isp_smtp_domain
"
==
'off'
||
"
$isp_smtp_domain
"
==
'0'
||
"
$isp_smtp_domain
"
==
''
]]
;
then
{
echo
'# password file used when the local exim is authenticating to a remote'
;
echo
'# host as a client.'
;
echo
'#'
;
echo
'# see exim4_passwd_client(5) for more documentation'
;
echo
'#'
;
echo
'# Example:'
;
echo
'### target.mail.server.example:login:password'
;
}
>
/etc/exim4/passwd.client
sed
-i
"s|dc_smarthost=.*|dc_smarthost=''|g"
/etc/exim4/update-exim4.conf.conf
else
if
[[
"
$isp_smtp_domain
"
!=
*
'.'
*
]]
;
then
return
fi
if
[
!
"
$isp_smtp_port
"
]
;
then
isp_smtp_port
=
465
fi
if
[
"
$isp_smtp_username
"
]
;
then
if
[
"
$isp_smtp_password
"
]
;
then
{
echo
'# password file used when the local exim is authenticating to a remote'
;
echo
'# host as a client.'
;
echo
'#'
;
echo
'# see exim4_passwd_client(5) for more documentation'
;
echo
'#'
;
echo
"
${
isp_smtp_username
}
:
${
isp_smtp_password
}
"
;
}
>
/etc/exim4/passwd.client
fi
fi
sed
-i
"s|dc_smarthost=.*|dc_smarthost='
${
isp_smtp_domain
}
::
${
isp_smtp_port
}
'|g"
/etc/exim4/update-exim4.conf.conf
fi
update-exim4.conf
dpkg-reconfigure
--frontend
noninteractive exim4-config
systemctl restart exim4
}
function
email_change_relay
{
curr_ip_address
=
"
$1
"
email_relay_base
=
$(
echo
"
$curr_ip_address
"
|
awk
-F
'.'
'{print $1"."$2"."$3}'
)
...
...
This diff is collapsed.
Click to expand it.
src/freedombone-installer
+
19
−
0
View file @
6a632e59
...
...
@@ -32,6 +32,9 @@ PROJECT_NAME='freedombone'
export
TEXTDOMAIN
=
${
PROJECT_NAME
}
-installer
export
TEXTDOMAINDIR
=
"/usr/share/locale"
# for outgoing smtp relay
source
"/usr/share/
${
PROJECT_NAME
}
/base/
${
PROJECT_NAME
}
-base-email"
SSH_PORT
=
2222
INSTALL_STATE_FIRST_BOOT
=
0
...
...
@@ -66,6 +69,7 @@ FIREWALL_DOMAINS=/root/${PROJECT_NAME}-firewall-domains.cfg
local_hostname
=
$(
grep
'host-name'
/etc/avahi/avahi-daemon.conf |
awk
-F
'='
'{print $2}'
)
.local
webadmin_install_dir
=
"/var/www/
${
local_hostname
}
/htdocs/admin"
email_proxy_file
=
"
$webadmin_install_dir
/.emailproxy.txt"
theme_file
=
"
$webadmin_install_dir
/.theme.txt"
translations_import_file
=
"
$webadmin_install_dir
/.translations_import.txt"
icecast_file
=
"
$webadmin_install_dir
/.icecast.txt"
...
...
@@ -2494,6 +2498,20 @@ function update_bridges {
fi
}
function
update_email_proxy
{
# This allows outgoing email to be proxied through your ISP or another SMTP server
if
[
-f
"
$email_proxy_file
"
]
;
then
isp_smtp_domain
=
$(
awk
-F
','
'{print $1}'
<
"
$email_proxy_file
"
)
isp_smtp_port
=
$(
awk
-F
','
'{print $2}'
<
"
$email_proxy_file
"
)
isp_smtp_username
=
$(
awk
-F
','
'{print $3}'
<
"
$email_proxy_file
"
)
isp_smtp_password
=
$(
awk
-F
','
'{print $4}'
<
"
$email_proxy_file
"
)
rm
"
$email_proxy_file
"
email_smtp_proxy_through_isp
"
$isp_smtp_domain
"
"
$isp_smtp_port
"
"
$isp_smtp_username
"
"
$isp_smtp_password
"
fi
}
function
update_dynamic_dns
{
if
[
-f
"
$dynamic_dns_file
"
]
;
then
ddns
=
$(
awk
-F
','
'{print $1}'
<
"
$dynamic_dns_file
"
)
...
...
@@ -2833,6 +2851,7 @@ do
update_smolrss
update_icecast
update_dat_links
update_email_proxy
import_translations
webadmin_upgrade
install_apps_from_webadmin
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment