diff options
author | Randolph Carter <RandolphCarter@fantasymail.de> | 2012-12-19 01:09:14 +0100 |
---|---|---|
committer | Randolph Carter <RandolphCarter@fantasymail.de> | 2012-12-19 01:09:14 +0100 |
commit | d2828bab0792ce945f658e3fa66a62341c582d5e (patch) | |
tree | d12467e1e89cb000a17edd87fb369d476472ace8 /lib/public/util.php | |
parent | 3adfb91ad895dc9371834c0e42cfd3605fdd7054 (diff) | |
download | nextcloud-server-d2828bab0792ce945f658e3fa66a62341c582d5e.tar.gz nextcloud-server-d2828bab0792ce945f658e3fa66a62341c582d5e.zip |
fixes default email sender address
Diffstat (limited to 'lib/public/util.php')
-rw-r--r-- | lib/public/util.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/public/util.php b/lib/public/util.php index 7b5b1abbded..9727cfda284 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -173,6 +173,42 @@ class Util { } /** + * @brief returns the server hostname + * @returns the server hostname + * + * Returns the server host name without an eventual port number + */ + public static function getServerHostName() { + $host_name = self::getServerHost(); + // strip away port number (if existing) + $colon_pos = strpos($host_name, ':'); + if ($colon_pos != FALSE) { + $host_name = substr($host_name, 0, $colon_pos); + } + return $host_name; + } + + /** + * @brief Returns the default email address + * @param $user_part the user part of the address + * @returns the default email address + * + * Assembles a default email address (using the server hostname + * and the given user part, and returns it + * Example: when given lostpassword-noreply as $user_part param, + * and is currently accessed via http(s)://example.com/, + * it would return 'lostpassword-noreply@example.com' + */ + public static function getDefaultEmailAddress($user_part) { + $host_name = self::getServerHostName(); + // handle localhost installations + if ($server_host === 'localhost') { + $server_host = "example.com"; + } + return $user_part.'@'.$host_name; + } + + /** * @brief Returns the server protocol * @returns the server protocol * |