pmcf 4.18.3 → 4.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/base.mjs +3 -2
- package/src/services/postfix.mjs +1 -1
package/package.json
CHANGED
package/src/base.mjs
CHANGED
|
@@ -160,7 +160,8 @@ export class Base {
|
|
|
160
160
|
this[name] = value;
|
|
161
161
|
}
|
|
162
162
|
} else {
|
|
163
|
-
|
|
163
|
+
const keyName = attribute.type.key;
|
|
164
|
+
this[name][value[keyName]] = value;
|
|
164
165
|
}
|
|
165
166
|
}
|
|
166
167
|
break;
|
|
@@ -497,7 +498,7 @@ export class Base {
|
|
|
497
498
|
}
|
|
498
499
|
|
|
499
500
|
get smtp() {
|
|
500
|
-
return this.findService('
|
|
501
|
+
return this.findService('in("smtp",types)');
|
|
501
502
|
}
|
|
502
503
|
|
|
503
504
|
/**
|
package/src/services/postfix.mjs
CHANGED