diff --git a/lib/public/util.php b/lib/public/util.php
index 8514a168b460af9d2c89cb2bd9b05966cef00b55..6317f10a66f06bee2a502b4469fab71e359c3f11 100644
--- a/lib/public/util.php
+++ b/lib/public/util.php
@@ -254,6 +254,10 @@ class Util {
 	 * 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'
+	 *
+	 * If the configuration value 'mail_from_address' is set in
+	 * config.php, this value will override the $user_part that
+	 * is passed to this function
 	 */
 	public static function getDefaultEmailAddress($user_part) {
 		$user_part = \OC_Config::getValue('mail_from_address', $user_part);