-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest
More file actions
5757 lines (4099 loc) · 234 KB
/
Copy pathtest
File metadata and controls
5757 lines (4099 loc) · 234 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Last login: Sun Jun 21 03:16:24 on ttys136
phongpak@Peters-MacBook-Pro ~ % ssh peter@192.168.1.10
peter@192.168.1.10's password:
Using terminal commands to modify system configs, execute external binary
files, add files, or install unauthorized third-party apps may lead to system
damages or unexpected behavior, or cause data loss. Make sure you are aware of
the consequences of each command and proceed at your own risk.
Warning: Data should only be stored in shared folders. Data stored elsewhere
may be deleted when the system is updated/restarted.
peter@MiNAS:~$ sudo grep -rli "reset\|welcome" /usr/syno/etc /usr/syno/synoman 2>/dev/null | grep -i mail
Password:
/usr/syno/etc/notification/mails
/usr/syno/synoman/webapi/lib/SYNO.Core.Notification.Mail.so
/usr/syno/synoman/webman/help/enu/AdminCenter/system_notification_email.html
/usr/syno/synoman/webman/texts/ptg/mails
/usr/syno/synoman/webman/texts/ptb/mails
/usr/syno/synoman/webman/texts/fre/mails
/usr/syno/synoman/webman/texts/rus/mails
/usr/syno/synoman/webman/texts/hun/mails
/usr/syno/synoman/webman/texts/nld/mails
/usr/syno/synoman/webman/texts/jpn/mails
/usr/syno/synoman/webman/texts/tha/mails
/usr/syno/synoman/webman/texts/sve/mails
/usr/syno/synoman/webman/texts/nor/mails
/usr/syno/synoman/webman/texts/chs/mails
/usr/syno/synoman/webman/texts/ger/mails
/usr/syno/synoman/webman/texts/cht/mails
/usr/syno/synoman/webman/texts/trk/mails
/usr/syno/synoman/webman/texts/plk/mails
/usr/syno/synoman/webman/texts/enu/mails
/usr/syno/synoman/webman/texts/ita/mails
/usr/syno/synoman/webman/texts/spn/mails
/usr/syno/synoman/webman/texts/krn/mails
/usr/syno/synoman/webman/texts/dan/mails
/usr/syno/synoman/webman/texts/csy/mails
peter@MiNAS:~$ cd /usr/syno/synoman/webman/texts/enu/mails
-sh: cd: /usr/syno/synoman/webman/texts/enu/mails: Not a directory
peter@MiNAS:~$ ls-a
-sh: ls-a: command not found
peter@MiNAS:~$ cd /usr/syno/synoman/webman/texts/enu
peter@MiNAS:/usr/syno/synoman/webman/texts/enu$ ls -a
. .. mails strings
peter@MiNAS:/usr/syno/synoman/webman/texts/enu$ cd mails
-sh: cd: mails: Not a directory
peter@MiNAS:/usr/syno/synoman/webman/texts/enu$ nano mails
peter@MiNAS:/usr/syno/synoman/webman/texts/enu$ cat mails
[AFPNotifyDeprecated]
Category: System
Level: NOTIFICATION_INFO
Desktop: AFP will no longer be supported in the next major DSM version.
Subject: AFP will no longer be supported in the next major DSM version
As Apple no longer supports AFP servers since macOS 11.0 Big Sur, the next major DSM version will end support for AFP. You can go to <b>Control Panel</b> > <b>File Services</b> to switch to SMB. Refer to <a href="https://www.synology.com/products/status?tab=software" target="_blank">this page</a> for more information.
From %HOSTNAME%
[AdvisorNotifyFinish]
Category: Storage
Level: NOTIFICATION_INFO
Desktop: SSD Cache Advisor analysis is complete.
Target: desktop,mail,mobile,cms
Subject: SSD Cache Advisor analysis is complete
SSD Cache Advisor has completed the 30-day analysis. Please go to Storage Manager > Storage > SSD Cache Advisor to view the analysis results.
From %HOSTNAME%
[AdvisorNotifyGetSuggestion]
Category: Storage
Level: NOTIFICATION_INFO
Desktop: SSD Cache Advisor has generated a recommended cache capacity.
Target: desktop,mail,mobile,cms
Subject: SSD Cache Advisor has generated a recommended cache capacity
SSD Cache Advisor has generated a recommended cache capacity. Please go to Storage Manager > Storage > SSD Cache Advisor to view the analysis results.
From %HOSTNAME%
[AdvisorNotifyLoadFail]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor is unable to load.
Subject: SSD Cache Advisor is unable to load
SSD Cache Advisor is unable to load. Please go to Storage Manager > Storage > SSD Cache Advisor for more information.
From %HOSTNAME%
[AdvisorNotifyLoadFailNoSuggestion]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor is unable to load and continue the analysis.
Subject: SSD Cache Advisor is unable to load and continue the analysis
SSD Cache Advisor is unable to load and continue the analysis. Please go to Storage Manager > Storage > SSD Cache Advisor to start the analysis again.
From %HOSTNAME%
[AdvisorNotifyLoadFailNotEnoughMem]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor is unable to load because of insufficient system memory.
Subject: SSD Cache Advisor is unable to load because of insufficient system memory
SSD Cache Advisor is unable to load because of insufficient system memory. Make sure the system has at least %REQUIRED_MEM_MB% MB of available memory. Please refer to <a href="https://www.synology.com/knowledgebase/DSM/tutorial/General_Setup/How_to_upgrade_memory_capacity_for_Synology_NAS" target=blank>this article</a> for more information. When there is sufficient system memory, please restart the system and allow SSD Cache Advisor to continue analyzing.
From %HOSTNAME%
[AdvisorNotifyTerminatedAbnormal]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor analysis stopped abnormally. Go to Storage Manager > Storage > SSD Cache Advisor and check the generated results. If your data usage pattern is still changing, you can start the analysis again and allow it to run for longer to obtain a more suitable cache size.
Subject: SSD Cache Advisor analysis stopped abnormally
SSD Cache Advisor analysis stopped abnormally. Go to Storage Manager > Storage > SSD Cache Advisor and check the generated results. If your data usage pattern is still changing, you can start the analysis again and allow it to run for longer to obtain a more suitable cache size.
From %HOSTNAME%
[AdvisorNotifyTerminatedAbnormalNoSuggestion]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor analysis stopped abnormally and did not generate a result. Go to Storage Manager > Storage > SSD Cache Advisor to start the analysis again.
Subject: SSD Cache Advisor analysis stopped abnormally
SSD Cache Advisor analysis stopped abnormally and did not generate a result. Go to Storage Manager > Storage > SSD Cache Advisor to start the analysis again.
From %HOSTNAME%
[AdvisorNotifyTerminatedVolCacheAbnormal]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor analysis stopped because of an abnormal volume or SSD cache status. Go to Storage Manager > Storage > SSD Cache Advisor and check the generated results.
Subject: SSD Cache Advisor analysis stopped abnormally
SSD Cache Advisor analysis stopped because of an abnormal volume or SSD cache status. Go to Storage Manager > Storage > SSD Cache Advisor and check the generated results.
From %HOSTNAME%
[AdvisorNotifyTerminatedVolCacheAbnormalNoSuggestion]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: SSD Cache Advisor analysis stopped because of an abnormal volume or SSD cache status. Resolve the issues before starting the analysis again.
Subject: SSD Cache Advisor analysis stopped abnormally
SSD Cache Advisor analysis stopped because of an abnormal volume or SSD cache status. Resolve the issues before starting the analysis again.
From %HOSTNAME%
[AutoBlockAdd]
Category: System
Level: NOTIFICATION_INFO
Title: IP address blocked
Desktop: IP address [%CLIENT_IP%] has been blocked by %HOSTNAME% via %SERVICE%.
Subject: IP address [%CLIENT_IP%] has been blocked by %HOSTNAME% via %SERVICE%
The IP address [%CLIENT_IP%] experienced %AUTOBLOCK_ATTEMPTS% failed attempts when attempting to log in to %SERVICE% running on %HOSTNAME% within %AUTOBLOCK_ATTEMPT_MIN% minutes, and was blocked at %AUTOBLOCK_TIME%.
From %HOSTNAME%
[AutoBlockDatabaseRulesWarning]
Category: System
Level: NOTIFICATION_WARN
Title: Too many IP addresses in the Block List on %HOSTNAME%
Desktop: Too many IP addresses in the Block List on %HOSTNAME%.
Subject: Too many IP addresses in the Block List on %HOSTNAME%
Your Block List on %HOSTNAME% is too long. Review the IP addresses in <b>Control Panel</b> > <b>Security</b> > <b>Protection</b> > <b>Auto Block</b>.<br>
Try doing the following:<br>
<ul><li>If the IP addresses were added manually, consider blocking them by firewall instead.</li>
<li>If the IP addresses were created automatically, review your Auto Block rule.</li></ul>
From %HOSTNAME%
[BtrfsVolumeMetadataLow]
Category: Storage
Level: NOTIFICATION_WARN
Desktop: Volume %VOLUME_ID% on %HOSTNAME% is running out of available space for metadata.
Subject: Volume %VOLUME_ID% on %HOSTNAME% is running out of available space for metadata
Volume %VOLUME_ID% on %HOSTNAME% is running out of available space for metadata. Go to Storage Manager > Storage for more information.
From %HOSTNAME%
[BuildinSystemInodeFull]
Category: System
Level: NOTIFICATION_ERROR
Title: The number of files is reaching its limit
Desktop: The number of files on the system partition on %HOSTNAME% is reaching its limit.
Subject: The number of files on the system partition on %HOSTNAME% is reaching its limit
The number of files on the system partition on %HOSTNAME% is reaching its limit. Please contact Synology Technical Support for assistance.
Maximum number of files allowed: %TOTAL_INODE%
Remaining file quota: %FREE_INODE% (%USAGE%%)
From %HOSTNAME%
[BuildinSystemVolumeFull]
Category: Storage
Level: NOTIFICATION_WARN
Title: Low storage capacity
Desktop: The system is running out of storage space on %HOSTNAME%.
Subject: Running out of storage space on %HOSTNAME%
The system is running out of storage capacity on %HOSTNAME%. Please refer to the information below and free up capacity.
Total capacity: %VOLUME_SIZE% GB
Available capacity: %FREE_SPACE% GB (%USAGE%%)
From %HOSTNAME%
[CMSClientConnectFailed]
Category: System
Level: NOTIFICATION_ERROR
Title: Unable to connect to the CMS Host
Desktop: %HOSTNAME% is unable to connect to the CMS Host (%CMS_SERVER%).
Subject: %HOSTNAME% is unable to connect to the CMS Host (%CMS_SERVER%)
The server %HOSTNAME% is unable to connect to the CMS Host (%CMS_SERVER%). Check the connections and settings of the CMS Host and its managed servers, or refer to <a href="https://kb.synology.com/DSM/tutorial/CMS_connection_issues" target="_blank">this article</a> for troubleshooting steps.
From %HOSTNAME%
[CMSClientDetachSuccess]
Category: System
Level: NOTIFICATION_INFO
Title: Disjoined from CMS host
Desktop: %HOSTNAME% disjoined from the CMS host (%CMS_SERVER%).
Subject: %HOSTNAME% disjoined from the CMS host (%CMS_SERVER%)
The server %HOSTNAME% disjoined from the CMS host (%CMS_SERVER%).
From %HOSTNAME%
[CMSClientJoinSuccess]
Category: System
Level: NOTIFICATION_INFO
Title: Joined CMS host
Desktop: %HOSTNAME% joined the CMS host (%CMS_SERVER%).
Subject: %HOSTNAME% joined the CMS host (%CMS_SERVER%)
The server %HOSTNAME% successfully joined the CMS host (%CMS_SERVER%). Some system settings will be managed by the CMS host.
From %HOSTNAME%
[CheckGroup_GroupRenamed]
Category: System
Level: NOTIFICATION_INFO
Desktop: The group "%OLD_NAME%" was renamed as "%NEW_NAME%" during the %OSNAME% update.
[CheckUser_UserRenamed]
Category: System
Level: NOTIFICATION_INFO
Desktop: The user "%OLD_NAME%" was renamed as "%NEW_NAME%" during the %OSNAME% update.
[CpuFanResume]
Category: System
Level: NOTIFICATION_INFO
Title: CPU fan resumed
Desktop: CPU fan %FANID% on %HOSTNAME% (SN: %HOST_SN%) has resumed.
Subject: CPU fan %FANID% on %HOSTNAME% (SN: %HOST_SN%) has resumed
CPU fan %FANID% on %HOSTNAME% (SN: %HOST_SN%) has resumed.
From %HOSTNAME%
[CpuFanStop]
Category: System
Level: NOTIFICATION_ERROR
Title: CPU fan stopped
Desktop: CPU fan %FANID% on %HOSTNAME% (SN: %HOST_SN%) has stopped working.
Subject: CPU fan %FANID% on %HOSTNAME% (SN: %HOST_SN%) has stopped working
CPU fan %FANID% on %HOSTNAME% (SN: %HOST_SN%) has stopped working. Please change the fan speed mode to Full-speed mode or restart your system to check if CPU fan can work properly.
From %HOSTNAME%
[DDNSFail]
Category: System
Level: NOTIFICATION_ERROR
Title: Unable to register DDNS service
Desktop: Unable to register the IP address %EXTERNAL_IP% to %DDNS_HOST_NAME% via DDNS service.
Subject: Unable to register the IP address %EXTERNAL_IP% to %DDNS_HOST_NAME% via DDNS service
The system is unable to register the external IP address %EXTERNAL_IP% to %DDNS_HOST_NAME% in DDNS server %DDNS_NAME%. The reported reason is [%FAIL_REASON%]. Please try again later.
From %HOSTNAME%
[DSMAutoUpdateCanceled]
Category: System
Level: NOTIFICATION_WARN
Title: Automatic %OSNAME% update canceled by the system
Desktop: Automatic %OSNAME% update on %HOSTNAME% was canceled by the system. You can still go to <a data-syno-app="SYNO.SDS.AdminCenter.Application" data-syno-fn="SYNO.SDS.AdminCenter.Update_Reset.Main">Control Panel > Update & Restore</a> to manually update it.
Subject: Automatic %OSNAME% update on %HOSTNAME% was canceled by the system
The system canceled automatic %OSNAME% update on %HOSTNAME%. If you still want to run the update, sign in to %HOSTNAME%, go to <b>Control Panel</b> > <b>Update & Restore</b> to check the cause, resolve the issue, and manually install the update.
From %HOSTNAME%
[DSMAutoUpdateCanceledByUser]
Category: System
Level: NOTIFICATION_WARN
Title: Automatic %OSNAME% update canceled by user
Desktop: Automatic %OSNAME% update on %HOSTNAME% was canceled by user. You can still go to <a data-syno-app="SYNO.SDS.AdminCenter.Application" data-syno-fn="SYNO.SDS.AdminCenter.Update_Reset.Main">Control Panel > Update & Restore</a> to manually update it.
Subject: Automatic %OSNAME% update on %HOSTNAME% was canceled by user
A user canceled the automatic update (version %NEW_VERSION%) on %HOSTNAME%. If you still want to run the update, sign in to %HOSTNAME% and go to <b>Control Panel</b> > <b>Update & Restore</b>.
From %HOSTNAME%
[DSMAutoUpdateDetectedCanDelay]
Category: System
Level: NOTIFICATION_ERROR
Title: New %OSNAME% update available
Desktop: A new %OSNAME% version that includes critical fixes is available. We strongly recommend installing %NEW_VERSION% as soon as possible to ensure data security. Next scheduled update installation: %SCHEDULED_UPDATE_DATE%. You may %DELAY_LINK_START%postpone%DELAY_LINK_END% this update if necessary.
Subject: A new %OSNAME% update with critical fixes is available on %HOSTNAME%
A new %OSNAME% version with critical fixes is now available.
Scheduled update installation: %SCHEDULED_UPDATE_DATE%
If you want to postpone the installation, sign in to %HOSTNAME% and click the postpone link in the desktop notification area.
Learn more about <a href="%HTTP_URL%" target="_blank">system updates</a>.
From %HOSTNAME%
[DSMAutoUpdateFailed]
Category: System
Level: NOTIFICATION_ERROR
Title: System update failed
Desktop: Failed to auto-update %OSNAME% on %HOSTNAME%. Check the status in <a data-syno-app="SYNO.SDS.AdminCenter.Application" data-syno-fn="SYNO.SDS.AdminCenter.Update_Reset.Main">%OSNAME% update</a>.
Subject: Failed to auto-update %OSNAME% on %HOSTNAME%
The auto-update of %OSNAME% on %HOSTNAME% failed. Sign in to %HOSTNAME% to check the status in <b>Control Panel</b> > <b>Update & Restore</b>.
From %HOSTNAME%
[DSMAutoUpdateNotifyNewImportantVersion]
Category: System
Level: NOTIFICATION_ERROR
Title: Important %OSNAME% update detected
Desktop: An important %OSNAME% update for %HOSTNAME% has been detected.
Subject: An important %OSNAME% update for %HOSTNAME% has been detected
An important %OSNAME% update is now available. Sign in to %HOSTNAME% and go to <b>Control Panel</b> > <b>Update & Restore</b> to install %NEW_VERSION%.
Synology offers important updates to fix critical security issues and bugs. To ensure that your system is always protected, you can set %HOSTNAME% to automatically install important updates.
Learn more about <a href="%HTTP_URL%" target="_blank">%OSNAME% updates</a>.
From %HOSTNAME%
[DSMAutoUpdateNotifyNewVersion]
Category: System
Level: NOTIFICATION_ERROR
Title: New %OSNAME% update detected
Desktop: A new %OSNAME% update for %HOSTNAME% has been detected.
Subject: A new %OSNAME% update for %HOSTNAME% has been detected
A new %OSNAME% version with new features is now available. Sign in to %HOSTNAME% and go to <b>Control Panel</b> > <b>Update & Restore</b> to install %NEW_VERSION%.
Learn more about <a href="%HTTP_URL%" target="_blank">%OSNAME% updates</a>.
From %HOSTNAME%
[DSMAutoUpdateReady]
Category: System
Level: NOTIFICATION_INFO
Title: System Automatic Update
Desktop: %NEW_VERSION% will be automatically installed in %COUNTDOWN_MINUTE% minutes. Click <a data-syno-scope="SYNO.SDS.DSMUpdateAction.Instance" data-syno-func="SYNO.SDS.DSMUpdateAction.Instance.checkAutoUpdate">here</a> to cancel the current %OSNAME% auto update.
Subject: %OSNAME% Automatic Update will automatically start on %HOSTNAME% in %COUNTDOWN_MINUTE% minutes
%NEW_VERSION% will be automatically installed in %COUNTDOWN_MINUTE% minutes. If you wish to cancel the installation, please sign in to %HOSTNAME% and click the cancel link in the desktop notification area.
From %HOSTNAME%
[DSMAutoUpdateReadyCanCancel]
Category: System
Level: NOTIFICATION_ERROR
Title: Auto-installing system update – can be canceled
Desktop: %NEW_VERSION% will be auto-installed in %COUNTDOWN_MINUTE% minutes. You may %DELAY_LINK_START%cancel%DELAY_LINK_END% the scheduled %OSNAME% update if necessary.
Subject: Auto-installing %OSNAME% update will start on %HOSTNAME% in %COUNTDOWN_MINUTE% minutes
%NEW_VERSION% will be automatically installed in %COUNTDOWN_MINUTE% minutes. If you want to cancel the installation, sign in to %HOSTNAME% and click the cancel link in the desktop notification area.
From %HOSTNAME%
[DSMAutoUpdateReadyCanDelay]
Category: System
Level: NOTIFICATION_ERROR
Title: Important %OSNAME% update – can be postponed
Desktop: An important %OSNAME% update will be auto-installed in 10 minutes. You may %DELAY_LINK_START%postpone%DELAY_LINK_END% this update if necessary.
Subject: An important %OSNAME% update with critical fixes is available on %HOSTNAME%
%NEW_VERSION% will be automatically installed in %COUNTDOWN_MINUTE% minutes. If you want to postpone the installation, sign in to %HOSTNAME% and click the postpone link in the desktop notification area.
From %HOSTNAME%
[DSMAutoUpdateReadyCantDelay]
Category: System
Level: NOTIFICATION_ERROR
Title: Auto-installing system update in 10 minutes
Desktop: An update will be auto-installed in 10 minutes.
Subject: A new %OSNAME% update with critical fixes will be auto-installed on %HOSTNAME%
%NEW_VERSION% will be automatically installed in %COUNTDOWN_MINUTE% minutes.
From %HOSTNAME%
[DSMAutoUpdateShutdownStart]
Category: System
Level: NOTIFICATION_INFO
Title: System updates to be installed before scheduled shutdown
Desktop: %OSNAME% updates will be installed on %HOSTNAME% before the scheduled shutdown.
Subject: %OSNAME% updates will be installed on %HOSTNAME% before the scheduled shutdown
%NEW_VERSION% will be installed before the scheduled shutdown and %HOSTNAME% will be powered off after the installation is completed.
Please do not turn off your %DISKSTATION% before it is completed.
From %HOSTNAME%
[DSMSupportFormCustomFailure]
Category: System
Level: NOTIFICATION_ERROR
Desktop: %CUSTOM_MSG%.
[DSMSupportFormCustomMessage]
Category: System
Level: NOTIFICATION_INFO
Desktop: %CUSTOM_MSG%.
[DSMUpdateAvailable]
Category: System
Level: NOTIFICATION_INFO
Title: New %OSNAME% update ready to install
Desktop: %OSNAME% update is ready to be installed on %HOSTNAME%.
Subject: %OSNAME% update is ready to be installed on %HOSTNAME%
A new version of %OSNAME% has been downloaded and is ready to be installed. Sign in to %HOSTNAME% and go to <b>Control Panel</b> > <b>Update & Restore</b> to install %NEW_VERSION%.
Learn more about <a href="%HTTP_URL%" target="_blank">%OSNAME% updates</a>.
From %HOSTNAME%
[DSMUpdateDownloadFailed]
Category: System
Level: NOTIFICATION_ERROR
Title: Failed to download %OSNAME% update patch
Desktop: Failed to download %OSNAME% update patch on %HOSTNAME%. Check the status in <a data-syno-app="SYNO.SDS.AdminCenter.Application" data-syno-fn="SYNO.SDS.AdminCenter.Update_Reset.Main"><b>Control Panel</b> > <b>Update & Restore</b></a>.
[DataVolumeLowCapacity]
Category: Storage
Level: NOTIFICATION_WARN
Title: Volume low on capacity
Desktop: Volume %VOLUME_ID% on %HOSTNAME% is running out of available capacity.
Subject: Volume %VOLUME_ID% on %HOSTNAME% is running out of available capacity
Volume %VOLUME_ID% on %HOSTNAME% is running out of available capacity. Please monitor the volume usage. To expand the volume size, you can <a href="https://kb.synology.com/DSM/help/DSM/StorageManager/storage_pool_expand_add_disk" target="_blank">add additional drives</a> or <a href="https://kb.synology.com/DSM/help/DSM/StorageManager/storage_pool_expand_replace_disk" target="_blank">replace existing drives with larger ones</a>.
Total capacity: %VOLUME_SIZE% GB
Available capacity: %FREE_SPACE% GB (%USAGE%%)
From %HOSTNAME%
[DedupeAnalyzeComplete]
Category: Storage
Level: NOTIFICATION_INFO
Title: Deduplication Analyzer analysis is complete
Desktop: Deduplication Analyzer has completed the analysis on %VOLUME_NAME% with an estimated savings of %SIZE% %TYPE%. Go to <a style="font-size:12px;text-decoration:underline;" data-syno-app="SYNO.SDS.StorageManager.Instance" data-syno-fn="SYNO.SDS.StorageManager.Pool.Main" data-syno-param='{"vueWizard": "DedupeVolumeConfigWindow","modalParam":{"vol_path":"%VOLUME_PATH%"}}'>Storage Manager</a> if you want to configure data deduplication on this volume.
Subject: Deduplication Analyzer has completed the analysis on %VOLUME_NAME%
Deduplication Analyzer has completed the analysis on %VOLUME_NAME% with an estimated savings of %SIZE% %TYPE%. If you want to configure data deduplication on this volume:
<ol>
<li>Go to <b>Storage Manager</b> > <b>Storage</b>.</li>
<li>Click the upper-right icon of %VOLUME_NAME%.</li>
<li>Select <b>Configure Data Deduplication</b>.</li>
</ol>
From %HOSTNAME%
[DedupeAnalyzeFailed]
Category: Storage
Level: NOTIFICATION_WARN
Title: Unable to run Deduplication Analyzer analysis
Desktop: Unable to run Deduplication Analyzer analysis on %VOLUME_NAME%.
Subject: Unable to run Deduplication Analyzer analysis on %VOLUME_NAME%
The system is unable to run Deduplication Analyzer analysis on %VOLUME_NAME%. Contact <a class="link-font" target="_blank" href="https://www.synology.com/company/contact_us">Synology Technical Support</a> for further assistance.
From %HOSTNAME%
[DedupeAutoFailed]
Category: Storage
Level: NOTIFICATION_WARN
Title: Unable to run automatic deduplication
Desktop: Unable to run automatic deduplication on %VOLUME_NAME%.
Subject: Unable to run automatic deduplication on %VOLUME_NAME%
The system is unable to run automatic deduplication on %VOLUME_NAME%.
Reason: %REASON%
From %HOSTNAME%
[DedupeManualFailed]
Category: Storage
Level: NOTIFICATION_WARN
Title: Unable to run manual deduplication
Desktop: Unable to run manual deduplication on %VOLUME_NAME%.
Subject: Unable to run manual deduplication on %VOLUME_NAME%
The system is unable to run manual deduplication on %VOLUME_NAME%.
Reason: %REASON%
From %HOSTNAME%
[DedupeManuallyComplete]
Category: Storage
Level: NOTIFICATION_INFO
Title: Manual deduplication has finished or stopped running
Desktop: Manual deduplication has finished or stopped running on %VOLUME_NAME%. Savings: %SIZE% %TYPE%.
Subject: Manual deduplication has finished or stopped running on %VOLUME_NAME%
The system has finished or stopped running manual deduplication on %VOLUME_NAME%.
Savings: %SIZE% %TYPE%
From %HOSTNAME%
[DeviceEjectedImproperly]
Category: External Storage
Level: NOTIFICATION_WARN
Title: Improper external device ejection
Desktop: External device %DEVICE_NAME% on %HOSTNAME% was not ejected safely.
Subject: External device %DEVICE_NAME% on %HOSTNAME% was not ejected safely
The external device %DEVICE_NAME% on %HOSTNAME% was not ejected safely. To prevent data loss, we recommend ejecting the device properly before unplugging it.
From %HOSTNAME%
[DiskCompatibilityIncompatible]
Category: Storage
Level: NOTIFICATION_WARN
Desktop: %DISK_ID% on %EUNIT_ID% is not on the Synology Products Compatibility List of your %DISKSTATION% model.
Subject: %DISK_ID% on %EUNIT_ID% is not on the Synology Products Compatibility List of your %DISKSTATION% model
%DISK_ID% (model: %MODEL%) on %EUNIT_ID% is not on the Synology Products Compatibility List of your %DISKSTATION% model. We recommend using <a href="https://www.synology.com/compatibility" target="_blank">compatible drives</a> to ensure system performance and maintain data integrity.
From %HOSTNAME%
[DiskStatusBadBlockWarn]
Category: Storage
Level: NOTIFICATION_WARN
Title: Number of bad blocks exceeded the pre-defined limit
Desktop: %DISK_NAME% in %CONTAINER_NAME% is read-only because the number of bad blocks has exceeded the pre-defined limit.
Subject: Number of bad blocks exceeded the pre-defined limit on %DISK_NAME% in %CONTAINER_NAME%
%DISK_NAME% in %CONTAINER_NAME% is read-only because the number of bad blocks has exceeded the pre-defined limit. To ensure data safety, please immediately back up the data on this Synology SSD and then replace the Synology SSD with a new one. Sign in to %HOSTNAME% for more information.
From %HOSTNAME%
[DiskStatusCritical]
Category: Storage
Level: NOTIFICATION_ERROR
Title: Drive is in critical status
Desktop: %DISK_NAME% on %CONTAINER_NAME% is in critical status.
Subject: %DISK_NAME% on %CONTAINER_NAME% is in critical status
%DISK_NAME% on %CONTAINER_NAME% is in critical status. We strongly recommend <a class="link-font" href="https://kb.synology.com/DSM/tutorial/How_to_back_up_your_Synology_NAS" target="_blank">backing up your data</a> and then replacing the drive.<br><br>
Drive information<br>
Vendor: %DISK_VENDOR%<br>
Model: %DISK_MODEL%<br>
Size: %DISK_CAPACITY%<br>
Serial number: %DISK_SN%<br>
Firmware version: %DISK_FIRM%<br>
Allocation role: %ALLOCATION_ROLE%<br><br>
<br>For more information, sign in to %HOSTNAME% and go to <b>Storage Manager</b> > <b>HDD/SSD</b> > <b>Health Info</b>.<br><br>
From %HOSTNAME%
[DiskStatusFailing]
Category: Storage
Level: NOTIFICATION_ERROR
Title: Drive has failed
Desktop: %DISK_NAME% on %CONTAINER_NAME% has failed.
Subject: %DISK_NAME% on %CONTAINER_NAME% has failed
%DISK_NAME% on %CONTAINER_NAME% is severely damaged and has failed. <a class="link-font" href="https://kb.synology.com/DSM/tutorial/How_to_back_up_your_Synology_NAS" target="_blank">Back up your data immediately</a> and then replace the drive.<br><br>
Drive information<br>
Brand: %DISK_VENDOR%<br>
Model: %DISK_MODEL%<br>
Capacity: %DISK_CAPACITY%<br>
Serial number: %DISK_SN%<br>
Firmware: %DISK_FIRM%<br><br>
%CONTENT%
<br>Sign in to %HOSTNAME% (if not already) for more information.<br><br>
From %HOSTNAME%
[DiskStatusLowPerformance]
Category: Storage
Level: NOTIFICATION_WARN
Title: Low drive performance
Desktop: Low drive performance of %DISK_ID% on %EUNIT_ID%.
Subject: Low drive performance of %DISK_ID% on %EUNIT_ID%
The performance of %DISK_ID% on %EUNIT_ID% is not optimized and thus may result in a low overall system performance. Please go to <b>Storage Manager</b> > <b>HDD/SSD</b> > <b>HDD/SSD</b> > <b>Health Info</b> for the recommended actions.
From %HOSTNAME%
[DiskStatusUnc]
Category: Storage
Level: NOTIFICATION_INFO
Title: Number of bad sectors increased
Target: desktop,mail,cms
Desktop: The number of bad sectors has increased on %DISK_NAME% of %CONTAINER_NAME%.
Subject: The number of bad sectors has increased on %DISK_NAME% of %CONTAINER_NAME%
The number of bad sectors has increased on %DISK_NAME% of %CONTAINER_NAME%. We recommend running data scrubbing to ensure data consistency. If the number of bad sectors continues to rise, refer to <a class="link-font" href="https://kb.synology.com/DSM/tutorial/How_to_diagnose_drives_health_status_when_receiving_bad_sector_warning" target="_blank">this article</a> for troubleshooting.<br><br>
Drive information<br>
Vendor: %DISK_VENDOR%<br>
Model: %DISK_MODEL%<br>
Size: %DISK_CAPACITY%<br>
Serial number: %DISK_SN%<br>
Firmware version: %DISK_FIRM%<br>
Allocation role: %ALLOCATION_ROLE%<br><br>
<br>For more information, sign in to %HOSTNAME% and go to <b>Storage Manager</b> > <b>HDD/SSD</b> > <b>Health Info</b>.<br><br>
From %HOSTNAME%
[DiskTemperatureAbnormal]
Category: Storage
Level: NOTIFICATION_WARN
Title: Drive temperature is not within the operating temperature range
Desktop: %DISK_NAME% is not within the operating temperature range.
Subject: %DISK_NAME% is not within the operating temperature range
The temperature of %DISK_NAME% (%MODEL%) is %REAL_TEMPERATURE%ºC and not within the operating temperature range (%MIN_TEMPERATURE%ºC ~ %MAX_TEMPERATURE%ºC). Make sure your %DISKSTATION% is located where the ambient temperature is within range.
From %HOSTNAME%
[DriveInterfaceIncompatible]
Category: Storage
Level: NOTIFICATION_ERROR
Title: Drive with incompatible interface detected
Desktop: Drive with incompatible interface detected.
Subject: Drive with incompatible interface detected
The system detected that you inserted a drive with an incompatible interface in slot %DISK_LIST%. Please insert a %DISK_INTF% drive instead.
From %HOSTNAME%
[DriveSlotDisabled]
Category: Storage
Level: NOTIFICATION_ERROR
Title: Drive slot disabled
Desktop: Drive slot %DISK_ID% has been disabled.
Subject: Drive slot %DISK_ID% has been disabled
Issues have occurred to Drive %DISK_ID%. The system cannot reconnect to the drive after several attempts; therefore, the drive slot has been disabled. Please replace the drive and go to <b>Storage Manager</b> > <b>HDD/SSD</b> and select the drive of the disabled drive slot and then re-enable the slot.
From %HOSTNAME%
[DsmProtectionCheckFailed]
Category: Storage
Level: NOTIFICATION_ERROR
Title: System abnormality detected
Desktop: All volumes have been unmounted because of abnormality on %HOSTNAME%.
Subject: All volumes have been unmounted because of abnormality on %HOSTNAME%
The system has detected an abnormality on %HOSTNAME%. All volumes have therefore been unmounted for data protection purpose. Please contact <a href="https://account.synology.com/support" target="_blank">Synology Technical Support</a> for further assistance.
From %HOSTNAME%
[DualControllerEboxFanResume]
Category: External Storage
Level: NOTIFICATION_INFO
Title: Expansion unit fan resumed
Desktop: %EBOX_ID% fan %FAN_ID% of %CONTROLLOR_ID% on %HOSTNAME% has resumed.
Subject: %EBOX_ID% fan %FAN_ID% of %CONTROLLOR_ID% on %HOSTNAME% has resumed
%EBOX_ID% fan %FAN_ID% on %HOSTNAME% has resumed.
From %HOSTNAME%
[DualControllerEboxFanStop]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: Expansion unit fan stopped
Desktop: %EBOX_ID% fan %FAN_ID% of %CONTROLLOR_ID% on %HOSTNAME% has stopped working.
Subject: %EBOX_ID% fan %FAN_ID% of %CONTROLLOR_ID% on %HOSTNAME% has stopped working
%EBOX_ID% fan %FAN_ID% on %HOSTNAME% has stopped working. Please try to restart the expansion unit by re-connecting the power.
From %HOSTNAME%
[ESATADiskFull]
Category: External Storage
Level: NOTIFICATION_WARN
Title: eSATA drive in low capacity
Desktop: eSATA drive (Drive %DISK_NUMBER%) on %HOSTNAME% is running out of space.
Subject: eSATA drive (Drive %DISK_NUMBER%) on %HOSTNAME% is running out of space
eSATA drive (Drive %DISK_NUMBER%) on %HOSTNAME% is running out of space. Please refer to the information below and take corrective actions.
Total capacity: %DISK_SIZE% GB
Available capacity: %FREE_SPACE% GB (%USAGE%%)
From %HOSTNAME%
[ESATAPartitionFull]
Category: External Storage
Level: NOTIFICATION_WARN
Title: eSATA partition in low capacity
Desktop: Partition %PARTITION_NUMBER% of eSATA drive (Drive %DISK_NUMBER%) on %HOSTNAME% is running out of space.
Subject: Partition %PARTITION_NUMBER% of eSATA drive (Drive %DISK_NUMBER%) on %HOSTNAME% is running out of space
The partition %PARTITION_NUMBER% of eSATA drive (Drive %DISK_NUMBER%) on %HOSTNAME% is running out of space. Please refer to the information below and take corrective actions.
Total capacity: %DISK_SIZE% GB
Available capacity: %FREE_SPACE% GB (%USAGE%%)
From %HOSTNAME%
[EUnitPowerFail]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: Redundant power supply of expansion unit failed
Desktop: Power supply No.%POWERID% of %EUNIT_ID% on %HOSTNAME% has failed.
Subject: Power supply No.%POWERID% of %EUNIT_ID% on %HOSTNAME% has failed
Power supply No.%POWERID% of %EUNIT_ID% on %HOSTNAME% has failed.
From %HOSTNAME%
[EUnitPowerResume]
Category: External Storage
Level: NOTIFICATION_INFO
Title: Redundant power supply of expansion unit recovered
Desktop: Power supply No.%POWERID% of %EUNIT_ID% on %HOSTNAME% has recovered.
Subject: Power supply No.%POWERID% of %EUNIT_ID% on %HOSTNAME% has recovered
Power supply No.%POWERID% of %EUNIT_ID% on %HOSTNAME% has recovered.
From %HOSTNAME%
[EboxFanResume]
Category: External Storage
Level: NOTIFICATION_INFO
Title: Expansion unit fan resumed
Desktop: %EBOX_ID% fan %FAN_ID% on %HOSTNAME% has resumed.
Subject: %EBOX_ID% fan %FAN_ID% on %HOSTNAME% has resumed
%EBOX_ID% fan %FAN_ID% on %HOSTNAME% has resumed.
From %HOSTNAME%
[EboxFanStop]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: Expansion unit fan stopped
Desktop: %EBOX_ID% fan %FAN_ID% on %HOSTNAME% has stopped working.
Subject: %EBOX_ID% fan %FAN_ID% on %HOSTNAME% has stopped working
%EBOX_ID% fan %FAN_ID% on %HOSTNAME% has stopped working. Please try to restart the expansion unit by re-connecting the power.
From %HOSTNAME%
[EboxLinkFail]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: Connection error on expansion unit
Desktop: An incorrect interface connection was detected on the expansion unit %EBOX_ID% (SAS Out - %LINK_ID%) of %HOSTNAME% (SN: %HOST_SN%).
Subject: An incorrect interface connection was detected on the expansion unit %EBOX_ID% (SAS Out - %LINK_ID%) of %HOSTNAME% (SN: %HOST_SN%)
An incorrect interface connection was detected on the expansion unit %EBOX_ID% (SAS Out - %LINK_ID%) of %HOSTNAME% (SN: %HOST_SN%). Please refer to the Hardware Installation Guide for more information.
From %HOSTNAME%
[EboxLinkResume]
Category: External Storage
Level: NOTIFICATION_INFO
Title: Expansion unit connection recovered
Desktop: Recovered the connection on the expansion unit %EBOX_ID% (SAS Out - %LINK_ID%) of %HOSTNAME% (SN: %HOST_SN%).
Subject: Recovered the connection on the expansion unit %EBOX_ID% (SAS Out - %LINK_ID%) of %HOSTNAME% (SN: %HOST_SN%)
The connection on the expansion unit %EBOX_ID% (SAS Out - %LINK_ID%) of %HOSTNAME% (SN: %HOST_SN%) has been recovered.
From %HOSTNAME%
[EncModuleInstallFail]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: Expansion module incorrectly installed
Desktop: Module %MOD_ID% of %EBOX_ID% on %HOSTNAME% was incorrectly installed.
Subject: Module %MOD_ID% of %EBOX_ID% on %HOSTNAME% was incorrectly installed
Module %MOD_ID% of %EBOX_ID% on %HOSTNAME% was incorrectly installed. Please refer to the Hardware Installation Guide for more information.
From %HOSTNAME%
[EncModuleInstallResume]
Category: External Storage
Level: NOTIFICATION_INFO
Title: Expansion module correctly installed
Desktop: Module %MOD_ID% of %EBOX_ID% on %HOSTNAME% has been correctly installed.
Subject: Module %MOD_ID% of %EBOX_ID% on %HOSTNAME% has been correctly installed
Module %MOD_ID% of %EBOX_ID% on %HOSTNAME% has been correctly installed.
From %HOSTNAME%
[EunitNotCompatibleWithNAS]
Category: External Storage
Level: NOTIFICATION_WARN
Desktop: An incompatible expansion unit (%EUNIT_ID%) has been detected.
Subject: An incompatible expansion unit (%EUNIT_ID%) has been detected
An expansion unit (%EUNIT_ID%) has been detected to be incompatible with your %DISKSTATION% model. Go to <a data-syno-app="SYNO.SDS.StorageManager.Instance">Storage Manager</a> for more information.
From %HOSTNAME%
[ExpansionFrmInconsistent]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: Inconsistent expansion unit firmware
Desktop: The firmware on expansion unit of %HOSTNAME% is inconsistent.
Subject: The firmware on expansion unit of %HOSTNAME% is inconsistent
The firmware on the expansion unit of %HOSTNAME% is inconsistent. Please update the firmware from Control Panel > Update & Restore or contact Synology Technical Support for assistance.
From %HOSTNAME%
[ExternalVolumeBecomeReadOnly]
Category: External Storage
Level: NOTIFICATION_ERROR
Title: External device has become read-only
Desktop: External device %DEVICE_NAME% on %HOSTNAME% has become read-only.
Subject: External device %DEVICE_NAME% on %HOSTNAME% has become read-only
The external device %DEVICE_NAME% on %HOSTNAME% has become read-only. If you continue writing into this external device, your files may become corrupt.
We recommend backing up your data from the external device immediately.
From %HOSTNAME%
[FWUpgradeNotificationSummary]
Category: Storage
Level: NOTIFICATION_INFO
Desktop: %HOSTNAME% has completed the firmware update for your Synology drives. Please click <a data-syno-app='SYNO.SDS.StorageManager.Notify.FirmwareUpgrade.NotificationSummary.Instance' data-syno-param='%SUMMARY_DATA%'>details</a> to view the update results.
[FWUpgradePrepareFail]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: Unable to update the firmware of Synology drives. Go to Storage Manager > HDD/SSD > Action > Firmware Update and try again.
Target: desktop,cms
[FWUpgradePrepareFailActive]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: [%HA_HOSTNAME%] is unable to update the firmware of Synology drives on %ORI_HOSTNAME% (active server). Go to Storage Manager > HDD/SSD > Action > Firmware Update and try again.
Target: desktop,cms
[FWUpgradePrepareFailActivePassive]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: [%HA_HOSTNAME%] is unable to update the firmware of Synology drives. Go to Storage Manager > HDD/SSD > Action > Firmware Update and try again.
Target: desktop,cms
[FWUpgradePrepareFailPassive]
Category: Storage
Level: NOTIFICATION_ERROR
Desktop: [%HA_HOSTNAME%] is unable to update the firmware of Synology drives on %ORI_HOSTNAME% (passive server). Go to Storage Manager > HDD/SSD > Action > Firmware Update and try again.
Target: desktop,cms
[FWUpgradeSummary]
Category: Storage
Level: NOTIFICATION_INFO
Desktop: %HOSTNAME% has completed the firmware update of your Synology drives. <a style='font-size:12px;text-decoration:underline;' data-syno-app='%APP_INSTANCE%' data-syno-param='%SUMMARY_DATA%'>Check the update results</a>.
[FWUpgradeUpdateDB]
Category: Storage
Level: NOTIFICATION_WARN
Desktop: The drive database is outdated and cannot recognize one or more of your Synology drives. To ensure compatibility, <a data-syno-app="SYNO.SDS.StorageManager.Instance" data-syno-fn="SYNO.SDS.StorageManager.Disk.Main" data-syno-tab="settings-tab">update the database</a>.
Target: desktop,cms
[FWUpgradeUpdateDSM]
Category: Storage
Level: NOTIFICATION_WARN
Desktop: The current %OSNAME% version is incompatible with your Synology drives. To ensure compatibility, <a data-syno-app="SYNO.SDS.AdminCenter.Application" data-syno-fn="SYNO.SDS.AdminCenter.Update_Reset.Main">update</a> your %OSNAME% to %TARGET_DSM_VERSION% version or above.
Subject: %OSNAME% update is required to ensure drive compatibility
The current %OSNAME% version is incompatible with your Synology drives. To ensure compatibility, go to <b>%OSNAME%</b> > <b>Control Panel</b> > <b>Update & Restore</b> and update your %OSNAME% to %TARGET_DSM_VERSION% version or above.
From %HOSTNAME%
[FWUpgradeUpdateFirmware]
Category: Storage
Level: NOTIFICATION_WARN
Desktop: %DISK_NAME% requires a firmware update. To ensure compatibility, <a data-syno-app="SYNO.SDS.StorageManager.Instance" data-syno-fn="SYNO.SDS.StorageManager.Disk.Main" data-syno-tab="disk-tab" data-syno-param='{"dlg": "SYNO.SDS.StorageManager.Wizard.FirmwareUpgrade","modalParam":{"requireDiskMap":true,"requirePassiveDiskMapIfSHA":true}}'>update the drive firmware</a>.
Subject: %DISK_NAME% requires a firmware update to ensure compatibility
%DISK_NAME% requires a firmware update to ensure compatibility. To update the drive firmware, go to <b>Storage Manager</b> > <b>HDD/SSD</b> > <b>Action</b> > <b>Firmware Update</b>.
From %HOSTNAME%
[ForgetPassword]
Category: System