On 02/26/99(14:18) I wrote in <_A306@delegate-en.ML_> |By the way, testing this example I found that | SERVER=https://server |does not work in this case which must be the same functionality with: | SERVER=https MOUNT="/* https://server/*" |This must be fixed in the next release. A patch enclosed will make SERVER=https://server be possible. Cheers, Yutaka -- Yutaka Sato <paeaabth4-mxhgu43qb33w.ml@delegate.org> http://www.etl.go.jp/~ysato/ @ @ Computer Science Division, Electrotechnical Laboratory ( - ) 1-1-4 Umezono, Tsukuba, Ibaraki, 305-8568 Japan _< >_ *** ../../delegate5.8.8/src/delegated.c Tue Jan 19 07:42:04 1999 --- delegated.c Fri Feb 26 15:35:42 1999 *************** *** 918,922 **** else strcpy(mountopt,""); ! if( streq(proto,"http") ){ sprintf(mount,"%s*",serverurl); set_MOUNT_ifndef(Conn,"/-*","=",mountopt); --- 918,922 ---- else strcpy(mountopt,""); ! if( streq(proto,"http") || streq(proto,"https") ){ sprintf(mount,"%s*",serverurl); set_MOUNT_ifndef(Conn,"/-*","=",mountopt); *************** *** 970,974 **** } ! if( streq(DFLT_PROTO,"http") || streq(DFLT_PROTO,"icp") ) return DELEGATE_HTTP_PERMIT; else --- 970,975 ---- } ! if( streq(DFLT_PROTO,"http") || streq(DFLT_PROTO,"https") ! || streq(DFLT_PROTO,"icp") ) return DELEGATE_HTTP_PERMIT; else