(Context context)
| 980 | } |
| 981 | |
| 982 | static Map<String, String> getId(Context context) { |
| 983 | // https://www.rfc-editor.org/rfc/rfc2971.html |
| 984 | Map<String, String> id = new LinkedHashMap<>(); |
| 985 | id.put("name", context.getString(R.string.app_name)); |
| 986 | id.put("version", BuildConfig.VERSION_NAME); |
| 987 | return id; |
| 988 | } |
| 989 | |
| 990 | static String getDefaultEhlo() { |
| 991 | if (BuildConfig.APPLICATION_ID.startsWith("eu.faircode.email")) |
no test coverage detected