You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`AdvancedLogging`|`Boolean`| ✓ | If enabled, pmcenter will display the code files and line number where the logging was triggered. |
174
175
|`DisableTimeDisplay`|`Boolean`| ✓ | Don't display time in the logs. |
175
176
|`UpdateChannel`|`String`| ✓ | Choose which update channel you prefer to. |
177
+
|`IgnoreKeyboardInterrupt`|`Boolean`| ✓ | Choose whether pmcenter should ignore Ctrl-C interrupts or not. |
178
+
|`DisableNetCore3Check`|`Boolean`| ✓ | Turn this on to hide .NET Core Runtime version warnings. |
176
179
|`Statistics`|`Stats`| ✕ | Statistics data. |
177
180
|`Socks5Proxies`|`Array`| ✓ | List of SOCKS5 proxies. |
178
181
|`BannedKeywords`|`Array`| ✓ | Storage of banned keywords. |
@@ -261,9 +264,9 @@ You can write a `systemd service` to keep it running, even after the host machin
261
264
262
265
Please note: `/restart` command only works with a daemon that auto-restarts pmcenter when it exits. pmcenter cannot restart by itself.
263
266
264
-
# Known Problems
267
+
##Known Problems
265
268
266
-
## OpenSSL Compatibility Problem
269
+
###OpenSSL Compatibility Problem
267
270
268
271
This problem only occurs on Linux, and will not occur on Windows.
269
272
@@ -284,6 +287,34 @@ As is mentioned in issue [#33179](https://github.com/dotnet/corefx/issues/33179)
284
287
2. Upgrade to a newer (later than #34443) .NET Core 2.1 runtime.
285
288
3. Install OpenSSL 1.0.
286
289
287
-
# Disclaimer
290
+
## FAQ
291
+
292
+
### Why are you still targeting to .NET Core 2.1?
293
+
294
+
According to [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core), the .NET Core 2.2 is now EOL, .NET Core 3.0 is also approaching its _End of Support Date_. As for .NET Core 3.1, which has LTS support level, it may not be as widely supported as .NET Core 2.1 (which also has LTS support level). So we finally chose .NET Core 2.1.
295
+
296
+
The existing pmcenter code is completely compatible with .NET Core 3.1, but will not take advantage of the new features (like AOT compilation and TLS 1.3 support).
297
+
298
+
pmcenter is planning to move to .NET Core 3.1, see [issue #25](https://github.com/Elepover/pmcenter/issues/25).
299
+
300
+
### Why cannot I reply to anonymously forwarded messages?
301
+
302
+
Please enable the `EnableMsgLink` option in pmcenter's configurations file. Only messages forwarded when `EnableMsgLink` option is turned on can be replied.
303
+
304
+
For more information, refer to the [configurations](#pmcenter-settings) part.
305
+
306
+
### Why pmcenter.json is too large?
307
+
308
+
Maybe your pmcenter instance has saved too many Message Links, try this following command:
309
+
310
+
`/clearmessagelinks`
311
+
312
+
### Why pmcenter didn't restart when I use the `/restart` command?
313
+
314
+
The `/restart` command requires a daemon process or service manager (like `systemd` in some Linux distros), it cannot be restarted by itself. Check your system's configurations.
315
+
316
+
We also have a sample `systemd` service for you [here](https://github.com/Elepover/pmcenter/blob/master/pmcenter.service).
317
+
318
+
## Disclaimer
288
319
289
320
The program is licensed under Apache License _(Version 2.0. Dependencies are licensed under MIT License)_ and comes with **ABSOLUTELY NO WARRANTY**. By using the program in any way, you acknowledge and confirm that the developer of the program is **NOT RESPONSIBLE** for service outage, data loss or any other rare unlisted incident caused by the program.
"Message_Restarting": "🔄 Restarting...\n\n_It only works with systemd daemon._",
43
+
"Message_Restarting": "🔄 Restarting...\n\n_It only works with systemd-like daemons._",
44
44
"Message_NotificationsOff": "📳 Notifications are *OFF*.",
45
45
"Message_NotificationsOn": "📲 Notifications are *ON*.",
46
46
"Message_SupportTextMessagesOnly": "📋 Sorry... Only text messages can be forwarded in Anonymous Forward mode.",
47
47
"Message_ForwarderNotReal": "ℹ The actual sender of this message is $1, whose UID is `$2`.\n\nYou can also ban this user by sending this following command:\n\n`/banid $2`\n\nTo undo this, send this command:\n\n`/pardonid $2`",
"Message_NetCore31Required": "⚠ You need `.NET Core 3.1` (runtime) installed in order to receive pmcenter v2 and further updates.\n\nLatest .NET Core runtime version detected on your device: `$1`\n\nThis warning will only show once."
0 commit comments