pmcf 4.9.1 → 4.9.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "4.9.1",
3
+ "version": "4.9.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -492,7 +492,12 @@ export class Host extends ServiceOwner {
492
492
  if (this.extra) {
493
493
  packageData = {
494
494
  dir,
495
- sources: [new FileContentProvider(join(this.directory, "extra") + "/")],
495
+ sources: [
496
+ new FileContentProvider({
497
+ dir: join(this.directory, "extra"),
498
+ pattern: "**/*"
499
+ })
500
+ ],
496
501
  outputs: this.outputs,
497
502
  properties: {
498
503
  name: `${this.typeName}-extra-${this.owner.name}-${this.name}`,
@@ -107,6 +107,12 @@ export const ServiceTypes = {
107
107
  ],
108
108
  dnsRecord: { type: "MX" }
109
109
  },
110
+ lmtp: {
111
+ endpoints: [
112
+ { family: "IPv4", protocol: "tcp", port: 24, tls: false },
113
+ { family: "IPv6", protocol: "tcp", port: 24, tls: false }
114
+ ]
115
+ },
110
116
  ssh: {
111
117
  endpoints: [
112
118
  { family: "IPv4", protocol: "tcp", port: 22, tls: false },
@@ -140,6 +140,14 @@ export const ServiceTypes: {
140
140
  type: string;
141
141
  };
142
142
  };
143
+ lmtp: {
144
+ endpoints: {
145
+ family: string;
146
+ protocol: string;
147
+ port: number;
148
+ tls: boolean;
149
+ }[];
150
+ };
143
151
  ssh: {
144
152
  endpoints: {
145
153
  family: string;