1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00

Allow importing custom Atheme metadata to {cs,ns}_set_misc.

This commit is contained in:
Sadie Powell
2026-02-19 16:35:11 +00:00
parent 7242c740c8
commit 8500fefe91
3 changed files with 94 additions and 2 deletions
+28
View File
@@ -1084,6 +1084,34 @@ mail
* The file that db_atheme will import your main database from.
*/
database = "atheme.db"
/*
* If you have custom data in your Atheme database that you want converted
* to Anope misc data to be shown with cs_set_misc you can configure that
* using one or more cs_set_misc blocks.
*/
#cs_set_misc
{
/* The key name used by Atheme. */
atheme = "private:misc:data"
/* The cs_set_misc entry to import into. */
anope = "MISC_DATA"
}
/*
* If you have custom data in your Atheme database that you want converted
* to Anope misc data to be shown with ns_set_misc you can configure that
* using one or more ns_set_misc blocks.
*/
#ns_set_misc
{
/* The key name used by Atheme. */
atheme = "private:misc:data"
/* The ns_set_misc entry to import into. */
anope = "MISC_DATA"
}
}
/*